-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
90 lines (90 loc) · 2.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fluid-earth",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/byrd-polar/fluid-earth.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build",
"build:webcomponent": "rollup -c webcomponent/rollup.config.js",
"build:clean": "rimraf dist",
"dev": "vite",
"preview": "vite preview",
"tera": "node ./backend/main.js",
"tera:one": "node ./backend/rabbit.js",
"tera:get-prod-state": "./backend/scripts/get-prod-state.js",
"tera:clean": "cli-confirm \"Are you sure? (y/N):\" && rimraf public/tera backend/atomic backend/cache backend/state"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "0.4.4",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"chokidar": "^3.6.0",
"cli-confirm": "^1.0.1",
"csv-parse": "^5.5.6",
"dedent": "^1.5.3",
"mapshaper": "0.6.61",
"node-stream-zip": "^1.15.0",
"rimraf": "^5.0.10",
"rollup": "^3.29.5",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19",
"uuid": "^9.0.1",
"vite": "^4.5.5"
},
"dependencies": {
"@petamoriken/float16": "^3.8.7",
"@slightlyoff/lite-vimeo": "^0.1.2",
"carbon-icons-svelte": "^12.11.0",
"d3-axis": "^3.0.0",
"d3-color": "^3.1.0",
"d3-geo": "^3.1.1",
"d3-geo-projection": "^4.0.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"debounce": "^1.2.1",
"dotenv": "^16.4.5",
"esm-seedrandom": "github:shanewholloway/js-esm-seedrandom",
"focus-trap": "^7.6.0",
"interactjs": "^1.10.27",
"js-quantities": "^1.8.0",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^8.0.0",
"svelte-range-slider-pips": "2.2.3",
"svelte-toggle": "^4.0.1",
"tippy.js": "^6.3.7",
"topojson-client": "^3.1.0",
"twgl.js": "^5.5.4",
"wcag-contrast": "^3.0.0"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@slightlyoff/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
},
"allowNonAppliedPatches": true,
"peerDependencyRules": {
"ignoreMissing": [
"@types/*"
]
}
}
}