-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "webhook-tester",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"bin": {
"webhook-tester": "./bin/webhook-tester.mjs"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:pull": "prisma db pull",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:reset": "prisma migrate reset",
"db:seed": "prisma db seed",
"db:format": "prisma format",
"db:validate": "prisma validate",
"db:status": "prisma migrate status"
},
"dependencies": {
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"dotenv": "^17.3.1",
"jsonwebtoken": "^9.0.3",
"next": "16.1.6",
"pg": "^8.20.0",
"prisma": "^7.5.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-resizable-panels": "^4.11.2",
"swr": "^2.4.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.7"
}
}