-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "nu-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "ts-node-esm --project tsconfig.json ./db/migrate.ts"
},
"type": "module",
"dependencies": {
"@chakra-ui/react": "^2.2.6",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@prisma/client": "^4.1.1",
"@trpc/client": "^9.27.0",
"@trpc/next": "^9.27.0",
"@trpc/react": "^9.27.0",
"@trpc/server": "^9.27.0",
"clsx": "^1.2.1",
"dotenv": "^16.0.1",
"framer-motion": "^6.5.1",
"next": "12.2.4",
"next-auth": "^4.10.3",
"pg": "^8.7.3",
"postgrator": "^7.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-qr-code": "^2.0.7",
"react-qr-reader": "^3.0.0-beta-1",
"react-query": "^3.39.2",
"react-swipeable": "^7.0.0",
"sass": "^1.54.3",
"valtio": "^1.6.3",
"ws": "^8.8.1",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/node": "^18.6.4",
"@types/pg": "^8.6.5",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/ws": "^8.5.3",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"ngrok": "^4.3.3",
"prisma": "^4.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}