-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "needs-assessment",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"check:types": "yarn tsc",
"check:format": "yarn prettier --check .",
"format": "yarn prettier --write .",
"lint": "next lint",
"test": "NODE_ENV=test DATABASE_URL=postgresql://postgres:password@localhost:5432/test_db jest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"bcryptjs": "^2.4.3",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@eslint/eslintrc": "^3",
"@jest/globals": "^29.7.0",
"@prisma/client": "^6.3.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^6.0.2",
"babel-jest": "^29.7.0",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"postcss": "^8",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"prisma": "^6.3.1",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}