-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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": "solitaire",
"private": true,
"version": "0.1.4",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"android:run": "scripts/run-android.sh",
"assets:generate": "node scripts/build-icons.mjs"
},
"dependencies": {
"@capacitor/android": "^8.3.1",
"@capacitor/core": "^8.3.1",
"@capacitor/haptics": "^8.0.2",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@dnd-kit/core": "^6.3.1",
"idb-keyval": "^6.2.1",
"immer": "^11.1.4",
"motion": "^11.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"seedrandom": "^3.0.5",
"zustand": "^5.0.2"
},
"overrides": {
"tar": "^7.5.15"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^8.3.1",
"@resvg/resvg-js": "^2.6.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/seedrandom": "^3.0.8",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^7.3.2",
"vitest": "^3.2.4"
}
}