forked from ProbableTrain/MapGenerator
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.68 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "citygenerator",
"version": "1.1.1",
"description": "citygenerator fab city",
"private": true,
"scripts": {
"generate-cert": "mkdir -p ssl && openssl req -nodes -new -x509 -keyout ssl/private-key.pem -out ssl/certificate.pem -days 365 -config ssl/distinguished.cnf",
"build": "webpack",
"postbuild": "node ./src/js/deep.js && cp ./src/html/style.css ./dist/",
"postinstall": "npm run generate-cert && npm audit fix && npm run build",
"start": "node https_server.js",
"audit": "npm audit --audit-level=moderate",
"audit:fix": "npm audit fix",
"audit:fix:force": "npm audit fix --force"
},
"keywords": [
"citygenerator",
"fab city",
"maps"
],
"contributor": "universalbit-dev",
"author": "probabletrain",
"license": "LGPL-3.0",
"devDependencies": {
"@types/d3-quadtree": "^3.0.6",
"@types/dat.gui": "^0.7.12",
"@types/file-saver": "^2.0.7",
"@types/jsts": "^0.17.23",
"@types/noisejs": "^0.0.31",
"@types/three": "^0.160.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"open": "^10.1.0",
"style-loader": "^4.0.0",
"tsd": "^0.30.7",
"typescript": "^5.4.2",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@loaders.gl/core": "^4.3.4",
"@loaders.gl/gis": "^4.3.4",
"@popperjs/core": "^2.11.8",
"@svgdotjs/svg.js": "^3.2.0",
"@types/openlayers": "^4.6.23",
"audit": "^0.0.6",
"bootstrap": "^5.3.7",
"chart.js": "^4.5.0",
"cities.json": "^1.1.45",
"convnetjs": "^0.3.0",
"d3": "^7.9.0",
"d3-quadtree": "^3.0.1",
"dat.gui": "^0.7.9",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"fs-extra": "^11.3.0",
"http2-express": "^1.0.1",
"install": "^0.13.0",
"interactjs": "^1.10.26",
"isect": "^3.0.2",
"jdenticon": "^3.3.0",
"jsts": "^2.11.3",
"jszip": "^3.10.1",
"loglevel": "^1.9.1",
"noisejs": "^2.1.0",
"ol": "^9.0.0",
"path": "^0.12.7",
"polyk": "^0.24.0",
"roughjs": "^4.6.6",
"simplex-noise": "^4.0.1",
"simplify-js": "^1.2.4",
"stl-exporter": "^0.3.6",
"stream": "^0.0.3",
"stream-browserify": "^3.0.0",
"three": "^0.175.0",
"three-buffer-geometry-utils": "^1.0.0",
"three-csg-ts": "^3.1.13",
"ts-loader": "^9.5.1",
"vite": "^6.2.6"
},
"overrides": {
"elliptic": "^6.6.1",
"serialize-javascript": "^7.0.5",
"minimatch": "^9.0.4",
"braces": "^3.0.3",
"semver": "^7.6.0",
"path-to-regexp": "^6.2.1",
"tough-cookie": "^4.1.4",
"ws": "^8.18.1",
"micromatch": "^4.0.8",
"cross-spawn": "^7.0.6"
},
"engines": {
"node": ">=20 <25"
}
}