-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "hubbly",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:production": "npm run db:migrate && npm run build",
"build:preview": "npm run db:reset && npm run build",
"build:local": "npm run build",
"start": "next start",
"lint": "next lint",
"db:migrate": "node scripts/db-migrate.cjs",
"db:reset": "node scripts/db-reset.cjs",
"db:seed": "npx prisma db seed",
"db:generate": "npx prisma generate",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest __tests__/integration",
"test:components": "jest __tests__/components",
"test:unit": "jest __tests__/utils",
"postinstall": "npm run db:generate"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@paralleldrive/cuid2": "^3.3.0",
"@prisma/client": "^6.16.0",
"@types/node": "^24.3.1",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"dotenv": "^17.2.2",
"framer-motion": "^12.29.2",
"next": "^15.5.9",
"next-auth": "^4.24.11",
"pg": "^8.16.3",
"prisma": "^6.16.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"swr": "^2.3.8",
"typescript": "^5.9.2"
},
"devDependencies": {
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.2",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"node-mocks-http": "^1.17.2",
"postcss": "^8.5.6",
"seq-logging": "^3.0.0",
"tailwindcss": "^4.1.18"
}
}