-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
39 lines (38 loc) · 925 Bytes
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": "rtctd",
"private": true,
"prisma": {
"schema": "packages/db/prisma/schema.prisma"
},
"scripts": {
"build": "cd packages/db && npx prisma generate && cd ../../ && turbo build",
"dev": "cd packages/db && npx prisma generate && cd ../../ && turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "prisma generate"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.0.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^11.2.12",
"recoil": "^0.7.7",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"@prisma/client": "^5.16.0",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"prisma": "^5.16.0"
}
}