-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 914 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
35
36
37
38
39
{
"name": "PayTM(Next)",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:generate": "cd packages/db && npx prisma generate && cd ../..",
"start-user-app": "cd ./apps/user-app && npm run start"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.3.1",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@repo/db": "^1.0.0",
"autoprefixer": "^10.4.20",
"bcrypt": "^5.1.1",
"next": "^15.0.4",
"next-auth": "^4.24.10",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"swal": "^0.1.0",
"sweetalert2": "^11.14.5",
"tailwindcss": "^3.4.16"
}
}