-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"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:app": "routify -b && rollup -c",
"build:static": "spank",
"serve": "spassr --ssr",
"rollup": "rollup -cw",
"nollup": "nollup -c",
"routify": "routify",
"validate": "svelte-check"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.0.0",
"@roxi/routify": "^2.12.0",
"@tsconfig/svelte": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"autoprefixer": "^10.2.4",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-svelte3": "^3.0.0",
"fs-extra": "^9.1.0",
"nollup": "^0.13.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.5",
"postcss-import": "^13.0.0",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-hot": "^0.1.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^6.1.0",
"rollup-plugin-svelte-hot": "^0.11.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^5.2.1",
"spank": "^1.5.2",
"spassr": "^2.2.0",
"svelte": "^3.32.1",
"svelte-check": "^1.1.33",
"svelte-preprocess": "^4.6.6",
"tailwindcss": "^2.0.3",
"tossr": "^1.3.1",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"routify": {
"extensions": "svelte,html,svx,md"
},
"spassr": {
"assetsDir": [
"dist",
"assets"
],
"script": "dist/build/main.js",
"ssrOptions": {
"inlineDynamicImports": true
}
},
"spank": {
"blacklist": [
"/example/modal/basic/4"
]
},
"dependencies": {
"axios": "^0.21.1",
"undefined": "^0.1.0"
}
}