-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@isp.nexus/universe",
"version": "4.0.0",
"private": true,
"description": "Mono-repo for ISP Nexus",
"repository": {
"url": "git+https://github.com/isp-nexus/universe.git"
},
"license": "AGPL-3.0",
"contributors": [
{
"name": "Teffen Ellis",
"email": "[email protected]"
}
],
"type": "module",
"workspaces": [
"path-ts",
"core",
"spatial",
"tiger",
"mailwoman",
"fcc",
"sdk",
"cartographer",
"sync",
"pelias",
"api",
"vaxis",
"schema",
"site"
],
"scripts": {
"repl": "node -i --import @isp.nexus/sdk/repl",
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"compile:clean": "node ./sdk/out/scripts/clean.js",
"lint": "run-s lint:prettier:check lint:eslint:check",
"lint:fix": "run-s lint:prettier:fix lint:eslint:fix",
"lint:prettier:check": "prettier --cache --check -u .",
"lint:prettier:fix": "prettier --cache --write -u .",
"lint:prettier": "eslint .",
"lint:eslint:check": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"build:site": "run-s compile schema:generate site:build",
"build:schema": "run-s compile schema:generate",
"schema:generate": "yarn workspace @isp.nexus/schema generate",
"site:build": "yarn workspace @isp.nexus/site build",
"release": "release-it"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Safari versions",
"last 2 ChromeAndroid versions",
"last 2 iOS versions",
"not dead",
"not IE 11"
],
"prettier": "@sister.software/prettier-config",
"resolutions": {
"@dsnp/[email protected]": "patch:@dsnp/parquetjs@npm%3A1.7.0#./.yarn/patches/@dsnp-parquetjs-npm-1.7.0-efe8288b39.patch",
"@maplibre/maplibre-gl-style-spec": "^20.3.1",
"axios": "^1.7.7",
"maplibre-contour@^0.0.7": "patch:maplibre-contour@npm%3A0.0.7#./.yarn/patches/maplibre-contour-npm-0.0.7-b9405f7552.patch",
"node-fetch@npm:3.3.2": "patch:node-fetch@npm%3A2.7.0#~/.yarn/patches/node-fetch-npm-2.7.0-587d57004e.patch",
"node-fetch@npm:^2.6.0": "patch:node-fetch@npm%3A2.7.0#~/.yarn/patches/node-fetch-npm-2.7.0-587d57004e.patch",
"node-fetch@npm:^2.6.1": "patch:node-fetch@npm%3A2.7.0#~/.yarn/patches/node-fetch-npm-2.7.0-587d57004e.patch",
"node-fetch@npm:^2.6.12": "patch:node-fetch@npm%3A2.7.0#~/.yarn/patches/node-fetch-npm-2.7.0-587d57004e.patch",
"node-fetch@npm:^2.6.7": "patch:node-fetch@npm%3A2.7.0#~/.yarn/patches/node-fetch-npm-2.7.0-587d57004e.patch",
"shapefile-parser@^1.0.3": "patch:shapefile-parser@npm%3A1.0.3#./.yarn/patches/shapefile-parser-npm-1.0.3-06d9f037bd.patch"
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^14.6.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@isp.nexus/sync": "workspace:*",
"@release-it-plugins/workspaces": "^4.2.0",
"@sister.software/eslint-config": "6.1.0",
"@sister.software/prettier-config": "6.1.0",
"@sister.software/tsconfig": "6.1.0",
"@types/adm-zip": "^0.5.5",
"@types/eslint": "^9.6.1",
"@types/node": "^22.7.4",
"adm-zip": "^0.5.13",
"docusaurus-plugin-typedoc": "^1.0.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.2",
"puppeteer": "^22.12.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"reflect-metadata": "^0.2.2",
"release-it": "^17.7.0",
"typedoc": "^0.26.8",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"wrangler": "^3.78.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.5.1"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": true
},
"npm": false
}
}