-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
{
"name": "ghost-scaffold",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@types/pg": "^8.18.0",
"@types/three": "^0.183.1",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"chart.js": "^4.5.1",
"framer-motion": "^12.35.2",
"gsap": "^3.14.2",
"jose": "^6.2.1",
"next": "^16.2.0",
"pg": "^8.20.0",
"react": "19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.3",
"three": "^0.183.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jsdom": "^28.1.0",
"playwright": "^1.58.2",
"prisma": "^7.5.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
},
"overrides": {
"hono": "^4.12.6",
"@hono/node-server": "^1.19.10",
"undici": "^7.24.3",
"lodash": "^4.17.21",
"effect": "^3.20.0"
}
}