-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "svelte-app",
"version": "1.0.0",
"@comments scripts": {
"dev": "develop with blazing fast rebuilds",
"dev:features": "develop with features like SSR and serviceworker enabled",
"build": "run build scripts below",
"build:app": "build single page application (SPA)",
"build:static": "Generate static pages",
"serve": "serve content in 'dist' folder",
"rollup": "run the rollup bundler",
"nollup": "run the nollup no-bundler",
"routify": "run routify"
},
"scripts": {
"dev": "run-p routify nollup",
"dev:ssr": "run-p routify rollup",
"build": "run-s build:*",
"_build:images": "npm run optimize-images",
"build:app": "routify -b && rollup -c",
"build:static": "spank",
"serve": "spassr --ssr",
"rollup": "rollup -cw",
"nollup": "nollup -c",
"routify": "routify",
"validate": "svelte-check",
"optimize-images": "npm install -g sharp-cli; npx expo-optimize -i \"assets/images/**/*\" -s"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@roxi/routify": "^2.18.4",
"@tsconfig/svelte": "^2.0.1",
"autoprefixer": "^10.4.1",
"cross-env": "^7.0.3",
"fs-extra": "^10.0.0",
"nollup": "^0.17.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"rollup": "^2.63.0",
"rollup-plugin-hot": "^0.1.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-svelte-hot": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"spank": "^1.9.0",
"spassr": "^2.6.0",
"svelte": "^3.44.3",
"svelte-check": "^2.2.11",
"svelte-preprocess": "^4.10.1",
"tossr": "^1.4.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"browsers": "last 4 version",
"routify": {
"extensions": "svelte,html,svx,md"
},
"spassr": {},
"spank": {
"blacklist": [
"/example/modal/basic/4"
]
},
"engines": {
"node": ">=16.0.0"
}
}