-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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": "eco-essentials",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"prisma-seed": "npx prisma db push && npx prisma db seed",
"prisma-studio": "npx prisma studio",
"prisma-generate": "npx prisma generate",
"prisma-reset": "npx prisma migrate reset --force",
"test": "jest"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hcaptcha/react-hcaptcha": "^1.11.0",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@mui/material-nextjs": "^6.0.0",
"@prisma/client": "5.19.0",
"@reduxjs/toolkit": "^2.2.7",
"bcrypt": "^5.1.1",
"install": "^0.13.0",
"jest-mock-extended": "^3.0.7",
"jose": "^5.9.2",
"jsonwebtoken": "^9.0.2",
"next": "14.2.7",
"pg": "^8.12.0",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.1.2",
"react-toastify": "^10.0.5",
"swr": "^2.2.5"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/jest-json-schema": "^6.1.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.16.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-json-schema": "^6.1.0",
"prisma": "^5.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}