-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "mini-sampa-3d",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "http-server ./dist",
"build-loader": "rollup -c",
"gen": "node generator",
"load": "node loader"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"postcss-import": "^14.1.0",
"postcss-inline-svg": "^5.0.0",
"sass": "^1.52.2",
"vite": "^2.9.13",
"vite-plugin-replace": "^0.1.1"
},
"dependencies": {
"@deck.gl/core": "^8.7.3",
"@deck.gl/layers": "^8.7.3",
"@deck.gl/mapbox": "^8.7.3",
"@fortawesome/fontawesome-free": "^5.15.4",
"@turf/along": "^5.1.5",
"@turf/bearing": "^5.1.5",
"@turf/buffer": "^5.1.5",
"@turf/center-of-mass": "^5.1.5",
"@turf/clean-coords": "^5.1.5",
"@turf/destination": "^5.1.5",
"@turf/distance": "^5.1.5",
"@turf/helpers": "^5.1.5",
"@turf/invariant": "^5.1.5",
"@turf/length": "^5.1.5",
"@turf/line-slice": "^5.1.5",
"@turf/meta": "^5.1.5",
"@turf/nearest-point-on-line": "^5.1.5",
"@turf/polygon-to-line": "^5.1.5",
"@turf/truncate": "^5.1.5",
"@turf/union": "^5.1.5",
"csscolorparser": "^1.0.3",
"date-holidays": "^3.16.0",
"loaders.css": "^0.1.2",
"mapbox-gl": "^2.7.1",
"mapbox-gl-animated-popup": "^0.2.1",
"mapbox-gl-rain-layer": "^0.5.0",
"moment": "^2.29.4",
"pako": "^1.0.11",
"rollup-plugin-dotenv": "^0.3.0",
"serve-static": "^1.15.0",
"suncalc": "^1.9.0",
"swiper": "^8.0.7",
"three": "^0.139.2"
},
"postcss": {
"preprocessor": "sassRender",
"plugins": {
"postcss-import": {},
"postcss-inline-svg": {
"paths": [
"node_modules/@fortawesome/fontawesome-free/svgs/solid/",
"node_modules/mapbox-gl/src/css/"
]
}
}
}
}