-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"private": true,
"type": "module",
"scripts": {
"tauri": "tauri",
"dev": "DEVELOPMENT=1 tauri dev",
"dev:web": "vite",
"build": "tauri build",
"build:web": "vite build",
"lint": "svelte-check --tsconfig ./tsconfig.json && eslint src && prettier --check src",
"format": "eslint --fix src && prettier --write src"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.2.0",
"@tailwindcss/forms": "^0.5.3",
"@tauri-apps/api": "^1.3.0",
"@tauri-apps/cli": "^1.3.1",
"@tsconfig/svelte": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"autoprefixer": "^10.4.14",
"cronstrue": "^2.27.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"sass": "^1.62.1",
"svelte": "^3.59.1",
"svelte-check": "^3.3.2",
"tailwindcss": "^3.3.2",
"tauri-specta": "^0.0.2",
"typescript": "^5.0.4",
"vite": "^4.3.5"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
}
}