-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "lichess-tauri",
"version": "0.0.8",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"format": "prettier --write .",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest run",
"tsc": "vue-tsc --noEmit",
"watch": "vitest",
"prepare": "husky install"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tauri-apps/api": "^1.1.0",
"@tauri-apps/cli": "^1.1.0",
"@types/node": "^20.1.0",
"@vitejs/plugin-vue": "^5.0.0",
"autoprefixer": "^10.4.13",
"chessground": "^9.0.2",
"chessops": "^0.14.1",
"husky": "^9.0.0",
"jsdom": "^24.0.0",
"pinia": "^2.0.23",
"postcss": "^8.4.18",
"prettier": "^3.0.0",
"svgexport": "^0.4.2",
"tailwindcss": "^3.2.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0",
"vue": "^3.2.37",
"vue-router": "^4.1.6",
"vue-tsc": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}