-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 836 Bytes
/
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
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn prisma:build && next dev",
"build": "yarn prisma:build && next build",
"start": "next start",
"prisma:dev": "prisma generate --watch",
"prisma:build": "prisma generate",
"format": "prettier --write ."
},
"dependencies": {
"@prisma/client": "^5.19.1",
"framer-motion": "^11.5.4",
"libphonenumber-js": "^1.11.8",
"next": "14.2.11",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-qr-reader": "^3.0.0-beta-1",
"swr": "^2.2.5",
"twilio": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^5.19.1",
"typescript": "^5"
}
}