-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
43
44
45
46
47
48
49
50
{
"private": true,
"type": "module",
"workspaces": [
"website"
],
"scripts": {
"tauri": "tauri",
"dev": "DEVELOPMENT=1 tauri dev",
"dev:web": "vite dev",
"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/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.2.0",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/cli": "^2.8.3",
"@tauri-apps/plugin-opener": "^2.5.0",
"@tauri-apps/plugin-os": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"date-picker-svelte": "^2.10.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"modal-svelte": "^1.3.1",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.69.7",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-svelte"
]
}
}