-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.14 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.14 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
{
"name": "taskflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "fuser -k 3000/tcp || true && next dev",
"build": "next build",
"start": "next start",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:e2e": "NODE_ENV=test playwright test",
"test:e2e:debug": "NODE_ENV=test node ./scripts/test-e2e-with-server.js",
"lint": "eslint 'app/**/*.{ts,tsx,js,jsx}' 'components/**/*.{ts,tsx,js,jsx}' 'tests/**/*.{ts,tsx,js,jsx}' --ignore-pattern 'app/generated/**' --ignore-pattern 'generated/**' --max-warnings=0",
"setup": "npm i && npm run db:setup && npx playwright install chromium",
"db:create": "node prisma/create-db.js",
"db:setup": "npm run db:create && npx prisma db push && npm run db:reset",
"db:clear": "node prisma/clear.js",
"db:seed": "node prisma/seed.js",
"db:reset": "npm run db:clear && npm run db:seed"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@prisma/client": "^6.13.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.537.0",
"next": "^15.5.7",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"recharts": "^3.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "^29",
"@types/node": "20.19.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"chrome-remote-interface": "^0.33.3",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"jest": "^29",
"jest-environment-jsdom": "^29",
"node-fetch": "^3.3.2",
"prisma": "^6.13.0",
"tailwindcss": "^4",
"ts-jest": "^29",
"typescript": "^5"
}
}