-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"scripts": {
"build": "npm run init:generate && npm run init-db && turbo run build",
"dev": "dotenv -- turbo dev --concurrency=15",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"start" : "dotenv --turbo && npm run navigate",
"migrate-db": "dotenv -e .env -- npx prisma migrate dev --schema=packages/db/prisma/schema.prisma",
"init-db" : "dotenv -e .env -- npm run migrate ",
"migrate" : "cd packages/db && npx prisma migrate dev",
"studio": "dotenv -e .env -- npm run init:studio",
"init:studio" : "cd packages/db && npx prisma studio & ",
"dx" : "npm run init-db && npm run studio && npm run dev",
"generate:prisma" : "cd packages/db && npx prisma generate",
"init:generate" : "dotenv -e .env -- npm run generate:prisma"
},
"devDependencies": {
"dotenv": "^16.3.1",
"dotenv-cli": "latest",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"tsconfig": "*",
"turbo": "latest"
},
"name": "Interview-Buddy-2.0",
"packageManager": "npm@10.2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@types/node": "^20.9.1",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"autoprefixer": "^10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.292.0",
"next": "^14.0.3",
"next-auth": "^4.24.5",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2"
}
}