-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.65 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
{
"name": "s4tk-vscode-web",
"version": "0.0.0",
"scripts": {
"clean": "rm -rf ./public/build",
"build": "npm run clean && npm run sass:build && npm run tw:build && rollup -c",
"dev": "npm run clean ; concurrently \"npm run sass:watch\" \"npm run tw:watch\" \"rollup -c -w\"",
"start": "sirv public --no-clear --port 5000",
"serve": "sirv public --no-clear --host",
"deploy": "sh ./scripts/deploy.sh",
"sass:build": "sass src/styles/global/_index.scss public/build/global.css",
"sass:watch": "npm run sass:build -- --watch",
"test:build": "npm run test:clean && tsc --project tsconfig.test.json",
"test:watch": "npm run test:build -- --watch",
"test:clean": "rm -rf ./test/lib",
"tw:build": "npx tailwindcss -i ./src/styles/tailwind.css -o ./public/build/tailwind.css",
"tw:watch": "npm run tw:build -- --watch"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/file-saver": "^2.0.5",
"concurrently": "^7.0.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.52.0",
"sirv-cli": "^2.0.2",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.0.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.5.0",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"svelte-spa-router": "^3.2.0"
}
}