-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "ai-interview-prep-app",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev -w apps/web",
"dev:web": "npm run dev -w apps/web",
"dev:api": "npm run dev -w apps/api",
"build": "npm run build -w apps/web && npm run build -w apps/api",
"lint": "npm run lint -w apps/web && npm run lint -w apps/api",
"preview": "vite preview",
"test": "npm run test -w apps/web",
"db:generate": "npm run db:generate -w apps/api",
"db:migrate": "npm run db:migrate -w apps/api"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.446.0",
"nodemailer": "^7.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"vite": "^5.2.0"
}
}