-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "driftwork",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma db push --force-reset --accept-data-loss && npm run db:seed",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@radix-ui/react-icons": "^1.3.2",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hot-toast": "^2.4.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "^4.1.4",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"jsdom": "^29.0.2",
"prisma": "^5.22.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}