forked from probablykasper/time-machine-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"private": true,
"scripts": {
"tauri": "tauri",
"dev": "tauri dev",
"dev:web": "vite",
"build": "tauri build",
"build:web": "vite build",
"test": "echo 'No tests'",
"lint": "prettier --check --plugin-search-dir=. src *.js && eslint src *.js && svelte-check",
"format": "prettier --write --plugin-search-dir=. src *.js && eslint --fix src *.js"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "1.0.0-next.44",
"@tauri-apps/api": "1.0.0-rc.5",
"@tauri-apps/cli": "1.0.0-rc.10",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.51.0",
"svelte": "^3.48.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"typescript": "^4.6.4",
"vite": "^2.9.9"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
}
}