-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 961 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
40
{
"name": "co-lab",
"private": true,
"scripts": {
"start": "turbo start",
"build": "npm run db:web && turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"start-user-app": "cd ./apps/web && npm run dev",
"db:web": "cd apps/web && npx prisma generate && cd ../.."
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"prettier": "^3.2.5",
"turbo": "^2.1.1",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@octokit/rest": "^21.0.2",
"@prisma/client": "^5.19.1",
"crypto": "^1.0.1",
"framer-motion": "^11.11.15",
"lucide-react": "^0.456.0",
"next-auth": "^4.24.7",
"octokit": "^4.0.2",
"prisma": "^5.19.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"uuid": "^10.0.0"
}
}