-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 KB
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
{
"name": "pbot-graphql-server",
"version": "1.5.1",
"description": "Backend GraphQL server for PBOT web applications",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"start": "nodemon",
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"postbuild": "copyfiles -u 2 src/document/**/*.json dist/document",
"prestart": "copyfiles .env dist/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@arcgis/core": "^4.24.4",
"@metalsmith/markdown": "^1.6.0",
"@terraformer/arcgis": "^2.1.1",
"@turf/along": "^6.5.0",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/buffer": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/length": "^6.5.0",
"@types/proj4": "^2.5.2",
"axios": "^1.12.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.21.2",
"express-graphql": "^0.12.0",
"fast-xml-parser": "^4.0.8",
"graphql": "^15.3.0",
"metalsmith": "^2.5.0",
"proj4": "^2.8.0",
"simple-git": "^3.16.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/arcgis-js-api": "^4.24.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/metalsmith": "^2.3.1",
"@types/nodegit": "^0.27.10",
"@types/terraformer__arcgis": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"copyfiles": "^2.4.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rollup": "^2.75.7",
"typescript": "^4.7.4"
}
}