-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "code_compass",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push",
"drizzle:studio": "drizzle-kit studio",
"drizzle:migrate": "drizzle-kit migrate",
"db:push": "npx -r dotenv/config drizzle-kit push",
"seed":"npx tsx drizzle/seed-category.ts",
"db:generate": "npx -r dotenv/config drizzle-kit generate",
"test": "jest --config jest.config.mjs",
"test:watch": "jest --config jest.config.mjs --watch",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:report": "playwright show-report"
},
"dependencies": {
"@radix-ui/react-tabs": "^1.1.12",
"@vercel/postgres": "^0.10.0",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.40.1",
"firebase": "^11.3.1",
"firebase-admin": "^13.2.0",
"framer-motion": "^12.4.3",
"lucide-react": "^0.469.0",
"next": "^15.1.4",
"pg": "^8.16.0",
"postgres": "^3.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-textshadow": "^2.1.3",
"tsx": "^4.20.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.47.2",
"@types/node": "^20.17.19",
"@types/pg": "^8.15.4",
"@types/jest": "^29.5.12",
"@types/react": "19.0.8",
"@types/react-dom": "^19",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "5.7.3"
}
}