-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "foxgis-server-lite",
"version": "2.0.0",
"bin": "./bin/www",
"scripts": {
"prepare": "husky install",
"start": "node ./bin/www",
"dev": "nodemon",
"docs": "docsify serve ./docs --open",
"test": "tape test/**/*.js",
"lint": "eslint app/**/*.js",
"format": "prettier-eslint --write app/**/*.js",
"dist": "pkg . --out-path=dist/ --targets=win,linux,macos --compress=GZip"
},
"engines": {
"node": ">=12"
},
"pkg": {
"assets": [
"node_modules/@mapbox/glyph-pbf-composite/proto/glyphs.proto"
]
},
"lint-staged": {
"{app,test}/**/*.js": "prettier-eslint --write"
},
"dependencies": {
"@mapbox/glyph-pbf-composite": "^0.0.3",
"@mapbox/mbtiles": "^0.12.1",
"compression": "^1.6.2",
"consolidate": "^0.16.0",
"cors": "^2.8.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"morgan": "^1.8.2"
},
"devDependencies": {
"docsify-cli": "^4.4.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"nodemon": "^2.0.15",
"pkg": "^5.2.1",
"prettier": "^2.3.0",
"prettier-eslint-cli": "^5.0.1",
"supertest": "^6.1.3",
"tape": "^5.2.2"
}
}