-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 KB
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
{
"private": true,
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri",
"tauri-init": "wait-on http://localhost:5000 && npm run tauri dev",
"tauri-icon": "npm run tauri icon --icon ./public/favicon.png",
"tauri-dev": "concurrently \"npm run dev\" \"npm run tauri-init\"",
"tauri-build": "npm run tauri build",
"postinstall": "concurrently \"npm run tauri info\" \"npm run tauri-icon\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^2.0.0",
"concurrently": "^6.2.0",
"rollup": "^2.50.6",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.34.1",
"slug": "^5.0.1",
"svelte": "^3.38.2",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.7.3",
"tslib": "^2.0.0",
"typescript": "^4.0.0",
"wait-on": "^5.3.0"
},
"dependencies": {
"@tauri-apps/api": "^1.0.0-beta.1",
"@tauri-apps/cli": "^1.0.0-beta.2",
"sirv-cli": "^1.0.12"
}
}