-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vault-gui",
"version": "0.0.0",
"author": "c0rydoras",
"contributors": [
{
"name": "Gian Klug",
"email": "[email protected]"
}
],
"type": "module",
"scripts": {
"build": "vite build --config vite.config.tauri.js",
"build:vite": "vite build",
"dev": "vite --config vite.config.tauri.js",
"dev:vite": "vite dev",
"preview": "vite preview",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"./src/**/*.css\"",
"lint:css:fix": "stylelint \"./src/**/*.css\" -- --fix"
},
"license": "MIT",
"devDependencies": {
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"autoprefixer": "10.4.19",
"@tanstack/solid-query-devtools": "^5.32.0",
"concurrently": "^8.2.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-solid": "^0.13.2",
"lightningcss": "1.24.1",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"vite": "5.2.9",
"vite-plugin-solid": "2.10.2",
"vite-plugin-tauri": "3.3.0"
},
"dependencies": {
"@solid-primitives/local-store": "^1.1.4",
"@solidjs/router": "^0.13.2",
"@tanstack/solid-query": "^5.32.0",
"@tauri-apps/api": "1.5.4",
"@tauri-apps/cli": "1.5.12",
"solid-heroicons": "^3.2.4",
"solid-js": "1.8.15",
"solid-toast": "^0.5.0"
}
}