-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
61
62
63
64
65
66
67
68
{
"name": "trucktools",
"private": true,
"version": "0.9.0",
"type": "module",
"scripts": {
"dev": "vite",
"tsc": "tsc",
"build": "tsc && vite build",
"lint": "eslint .",
"format": "prettier --write .",
"preview": "vite preview",
"tauri": "tauri"
},
"prettier": {
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "es5",
"useTabs": true,
"arrowParens": "always",
"endOfLine": "auto",
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"dependencies": {
"@formkit/tempo": "^0.1.2",
"@heroui/react": "2.6.14",
"@tabler/icons-react": "^3.30.0",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.5.0",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"framer-motion": "^12.4.2",
"primereact": "^10.9.2",
"react": "^19.0.0",
"react-color-palette": "^7.3.0",
"react-dom": "^19.0.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@tauri-apps/cli": "^2.2.7",
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8.5.2",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0"
}
}