-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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": "react-deckbuilder",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:types": "tsc --noEmit",
"test": "npx vitest",
"test:ui": "npx vitest --ui",
"prettier:write": "prettier --write .",
"qa": "npx concurrently --names 'test,lint,format' 'npm run test' 'npm run lint:types' 'npm run prettier:write'",
"convert:webp": "node --experimental-strip-types scripts/convert-to-webp.ts",
"convert:webp:dry": "node --experimental-strip-types scripts/convert-to-webp.ts --dry-run"
},
"dependencies": {
"@vercel/analytics": "1.6.1",
"@xstate/react": "6.0.0",
"array-shuffle": "4.0.0",
"clsx": "2.1.1",
"eslint-plugin-react": "^7.37.5",
"howler": "2.2.4",
"motion": "12.29.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"reset-css": "5.0.2",
"xstate": "5.25.1"
},
"devDependencies": {
"@types/howler": "2.2.12",
"@types/node": "25.0.3",
"@types/random": "3.0.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"@vitest/browser": "^4.0.17",
"@vitest/browser-playwright": "^4.0.17",
"@vitest/ui": "^4.0.16",
"concurrently": "9.2.1",
"eslint": "9.39.2",
"playwright": "^1.57.0",
"prettier": "3.7.4",
"semver": "^7.7.3",
"typescript": "5.9.3",
"vite": "7.3.0",
"vite-imagetools": "^9.0.2",
"vite-plugin-compression": "0.5.1",
"vite-plugin-imagemin": "^0.6.1",
"vitest": "^4.0.16",
"vitest-browser-react": "^2.0.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.54.0"
}
}