forked from silinternational/the-way-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.55 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": "the-way-svelte",
"version": "1.0.0",
"scripts": {
"prebuild:dev": "npm run clean:build",
"build:dev": "rollup -c -w",
"prebuild:prod": "echo GA_MEASUREMENT_ID=${GA_MEASUREMENT_ID} >> .env; echo ANSWER=${ANSWER} >> .env; echo API_HOST=${API_HOST} >> .env; echo THE_ONE=${THE_ONE} >> .env; npm run clean:build",
"build:prod": "rollup -c",
"clean": "run-p -l clean:build clean:deps",
"clean:build": "rimraf dist/bundle* dist/service-worker* dist/workbox*",
"clean:deps": "npm prune",
"local:dev": "run-p -l build:dev serve:http",
"local:prod": "run-p -l build:prod serve:http",
"serve:http": "sirv dist --dev --host 0.0.0.0 --port 8080 --single",
"serve:https": "sirv dist --dev --host 0.0.0.0 --port 8443 --single --http2 --key key.pem --cert cert.pem"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@roxi/routify": "^2.18.8",
"@silintl/ui-components": "^2.3.1",
"material-components-web": "^10.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"qs": "^6.11.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dotenv": "^0.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"sass": "^1.32.12",
"sirv-cli": "^1.0.12",
"svelte": "^3.50.1",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.8.3"
}
}