-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "antarctic-stations",
"version": "1.0.0",
"author": "Ivan Lokhov",
"license": "UNLICENSED",
"description": "An interactive map of stations in Antarctica",
"private": true,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"d3-color": "^1.4.0",
"d3-geo": "^1.11.9",
"d3-selection": "^1.4.1",
"lodash-es": "^4.17.15",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-dsv": "^2.0.1",
"@rollup/plugin-json": "^4.0.2",
"rollup": "^1.31.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.2.0",
"svelte": "^3.18.2"
}
}