forked from kamilsft/TutorHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 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
{
"name": "tutorhub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"build:vercel": "prisma migrate deploy && prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"seed:admin": "node ./scripts/seed-admin.mjs",
"test:unit": "vitest run lib/",
"test:route": "vitest run app/api/",
"test:integration": "vitest run tests/integration/",
"test:component": "vitest run components/",
"test:contracts": "vitest run tests/contracts/",
"test:smoke:perf": "vitest run tests/performance/",
"test:smoke:security": "vitest run tests/security/",
"test:python": "cd recommendation-service && python -m pytest test_main.py -v",
"seed:test-data": "node ./scripts/seed-test-data.mjs"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.2",
"bcryptjs": "^3.0.3",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"next": "^14.2.0",
"pg": "^8.19.0",
"prisma": "^7.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.0",
"dotenv": "^17.3.1",
"jsdom": "^29.0.1",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0",
"vitest": "3.2.4"
}
}