-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "svelte-app",
"version": "1.0.0",
"devDependencies": {
"autoprefixer": "^9.8.6",
"dot-prop": "^5.2.0",
"gh-pages": "^5.0.0",
"livereload": "^0.9.1",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"postcss-scss": "^2.1.1",
"qs": "^6.9.4",
"rollup": "^3.29.5",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^5.3.0",
"serialize-javascript": "^4.0.0",
"svelte": "^3.29.4",
"svelte-preprocess": "^4.5.2",
"workbox-cli": "^6.5.2"
},
"dependencies": {
"sirv-cli": "^1.0.8",
"svelte-i18n": "^1.1.2"
},
"scripts": {
"deploy": "gh-pages -d public",
"build": "rollup -c",
"build:sw": "workbox generateSW workbox-config.js",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single --port 8080",
"start:dev": "sirv public --single --dev --port 8080"
}
}