-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "class-points",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "fnox exec -- vite",
"dev:host": "fnox exec -- vite --host",
"build": "tsc -b && fnox exec -- vite build",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit",
"preview": "fnox exec -- vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:seed": "tsx scripts/seed-test-user.ts",
"test:e2e:local": "npm run test:seed && playwright test",
"migrate": "fnox exec -- tsx scripts/migrate-data.ts",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@supabase/supabase-js": "^2.90.1",
"lucide-react": "^1.8.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@seontechnologies/playwright-utils": "^4.3.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"simple-git-hooks": "^2.13.1",
"supabase": "^2.92.1",
"tailwindcss": "^4.1.17",
"tdd-guard-vitest": "^0.1.6",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^6.0.5",
"vitest": "^4.0.17"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && npm run typecheck"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
}
}