-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.84 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.84 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
{
"name": "tiny-museum",
"version": "0.6.0",
"description": "A creative, local-first drawing studio and flipbook animator for kids.",
"private": true,
"scripts": {
"dev": "next dev --turbopack -H 0.0.0.0",
"build": "next build",
"start": "next start -H 0.0.0.0",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"typecheck": "tsc --noEmit",
"quality": "npm run typecheck && npm run lint && npm run format:check",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"dependencies": {
"@supabase/supabase-js": "^2.99.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"fabric": "^7.2.0",
"nanoid": "^5.0.9",
"next": "^15.5.15",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^10.1.8",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.8",
"jsdom": "^29.0.1",
"postcss": "^8.4.49",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0",
"vite": "^8.0.5",
"vitest": "^4.1.0"
}
}