-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 KB
/
package.json
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
{
"name": "staff-management",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"run-db": "docker-compose up -d",
"migrate": "npx prisma migrate dev --name",
"seed-db": "npx prisma db seed",
"studio": "npx prisma studio",
"postinstall": "npx prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@prisma/client": "^5.7.0",
"@tanstack/react-query": "^4.18.0",
"@trpc/client": "^10.44.0",
"@trpc/next": "^10.44.0",
"@trpc/react-query": "^10.44.0",
"@trpc/server": "^10.44.0",
"@vercel/postgres": "^0.5.1",
"antd": "^5.12.1",
"dayjs": "^1.11.10",
"next": "^13.5.6",
"papaparse": "^5.4.1",
"prisma": "^5.7.0",
"react": "^18",
"react-dom": "^18",
"react-highlight-words": "^0.20.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-highlight-words": "^0.16.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"prisma-trpc-generator": "^1.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}