-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
35
36
{
"name": "Portfoliomanager",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} packages/prisma/seed.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.7.6",
"@types/nodemailer": "^6.4.16",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"turbo": "^2.1.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@prisma/client": "^5.21.0",
"bcrypt": "^5.1.1",
"next-auth": "^4.24.8",
"nodemailer": "^6.9.15",
"prisma": "^5.21.0",
"redis": "^4.7.0"
}
}