-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "tile-server",
"version": "1.0.0",
"description": "Vector tile server building lightweight tiles from custom sources",
"main": "build/app.js",
"scripts": {
"build": "webpack",
"start": "node ./build/app.js",
"serve": "webpack --watch",
"test": "jest",
"patch-release": "npm run clean && npm run build && npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm run clean && npm run build && npm version minor && npm publish && git push --follow-tags",
"dry-run": "npm publish --dry-run"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.2.1",
"axios-retry": "^3.3.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"geojson": "^0.5.0",
"geojson-vt": "^3.2.1",
"lodash": "^4.17.21",
"node-schedule": "^2.1.0",
"vt-pbf": "^3.1.3"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"nodemon": "^2.0.20",
"nodemon-webpack-plugin": "^4.8.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}