-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "svelte-app",
"version": "1.0.0",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-postcss": "^2.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^4.0.4",
"serialize-javascript": "^3.1.0",
"sirv-cli": "^0.4.5",
"svelte": "^3.19.2",
"svelte-preprocess": "^3.4.0",
"typescript": "^3.8.3",
"ws": "^7.2.1",
"minimist": ">=1.2.3"
},
"dependencies": {
"core-js": "^3.6.4",
"d3-dsv": "^1.2.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build": "rollup -c rollup-prod.config.js",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev"
}
}