-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.46 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
{
"name": "puzzle",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "bun run scripts/prepareBoardImages.ts",
"dev": "NEXT_TELEMETRY_DISABLED=1 bun -b next dev --turbopack",
"prebuild": "bun run scripts/prepareBoardImages.ts",
"build": "NEXT_TELEMETRY_DISABLED=1 bun -b next build --turbopack",
"build:export": "DATABASE_PATH=build/data/puzzle.sqlite bun run build && bun run scripts/exportStandaloneBuild.ts",
"debug:game": "bun run scripts/createDebugGame.ts",
"generate:profiles-json": "bun run scripts/generateProfilesJson.ts",
"report:profile-boards": "bun run scripts/reportProfileBoards.ts",
"start": "NEXT_TELEMETRY_DISABLED=1 bun -b next start",
"lint": "eslint"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@tanstack/react-form": "^1.33.0",
"clsx": "2.1.1",
"motion": "12.40.0",
"next": "16.2.9",
"react": "19.1.0",
"react-custom-scrollbars-2": "4.5.0",
"react-dom": "19.1.0",
"react-icons": "5.6.0",
"react-modal": "3.16.3",
"recharts": "3.9.0",
"sharp": "0.35.1",
"uuid": "14.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@types/bun": "1.3.14",
"@types/node": "25.9.4",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/react-modal": "3.16.3",
"eslint": "10.5.0",
"eslint-config-next": "16.2.9",
"typescript": "6.0.3"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}