-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "SaGIS",
"version": "1.0.0",
"homepage": "https://github.com/eile/sagis",
"private": true,
"description": "Scalable GIS Viewer",
"keywords": [
"ArcGIS",
"javascript",
"map",
"3D",
"2D",
"visualization",
"analytics",
"spatial",
"data-driven",
"display-wall",
"gis",
"Esri"
],
"license": "SEE LICENSE IN copyright.txt",
"bugs": "https://github.com/eile/sagis/issues",
"repository": {
"type": "git",
"url": "git@github.com:eile/sagis.git"
},
"browser": {
"buffer": false,
"crypto": false,
"fs": false,
"path": false,
"process": false
},
"engines": {
"node": ">=16.15"
},
"scripts": {
"start": "npm-run-all --parallel server vite",
"vite": "vite",
"build": "tsc && vite build",
"watch": "tsc --watch",
"server": "ts-node --project server/tsconfig.json ./server/server.ts"
},
"dependencies": {
"@arcgis/core": "^4.29.0-next",
"@esri/calcite-components": "1.9.2"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/ws": "~8.5.4",
"@typescript-eslint/eslint-plugin": "~6.9.1",
"@typescript-eslint/parser": "~6.9.1",
"eslint": "~8.52.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-jsdoc": "~46.8.2",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-regexp": "~1.15.0",
"eslint-plugin-unicorn": "~49.0.0",
"grunt": "~1.6.1",
"npm-run-all": "~4.1.5",
"ts-node": "^10.9.1",
"tslib": "~2.6.2",
"typescript": "~5.2.2",
"vite": "^4.5.1",
"ws": "~8.13.0"
}
}