This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "ees-server",
"version": "1.0.0",
"description": "Emergency Evacuation Simulator (EES) - Web Server",
"main": "dist/main.js",
"scripts": {
"clean": "rm -rf dist",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:dev:watch": "webpack --mode development --watch",
"server": "cd dist && node main.js",
"server:watch": "cd dist && nodemon main.js --watch .",
"dev": "npm run build:dev && npm-run-all --parallel build:dev:watch server:watch",
"start": "npm run server",
"preinstall": "npx npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentsoz/ees-server.git"
},
"author": "Dhi Singh <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/agentsoz/ees-server/issues"
},
"homepage": "https://github.com/agentsoz/ees-server#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"nodemon": "^2.0.9",
"now": "^11.4.6",
"npm-run-all": "^4.1.3",
"style-loader": "^0.23.0",
"webpack": "^5.42.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@mapbox/mbtiles": "^0.11.0",
"@mapbox/tilelive": "^6.0.0",
"cors": "^2.8.4",
"download": "^7.1.0",
"epsg": "^0.5.0",
"event-stream": "^3.3.4",
"express": "^4.16.3",
"global-mercator": "^3.0.3",
"pixl-xml": "^1.0.13",
"proj4": "^2.6.0",
"reproject": "^1.2.5"
},
"now": {
"public": true,
"name": "ees-server",
"alias": "ees-server"
},
"resolutions": {
"dot-prop": "^5.1.1",
"minimist": "^1.2.3",
"node-forge": "^0.10.0",
"glob-parent": "5.1.2",
"ini": "1.3.7",
"tar": "4.4.15",
"ansi-regex": "5.0.1"
}
}