-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 742 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 742 Bytes
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
{
"name": "speedchess",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"import-puzzles": "tsx scripts/import-puzzles.mts",
"crop-pieces": "tsx scripts/crop-pieces.mts"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"fzstd": "^0.1.1",
"sharp": "^0.34.5",
"tsx": "^4.19.2",
"typescript": "~6.0.2",
"vite": "^8.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.0",
"vite-plugin-pwa": "^1.2.0"
}
}