-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "anonymeet",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^2.8.3",
"@prisma/client": "^3.6.0",
"@types/luxon": "^2.0.7",
"aws-amplify": "^4.3.10",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"cookies": "^0.8.0",
"lodash": "^4.17.21",
"luxon": "^2.1.1",
"next": "12.0.4",
"njwt": "^1.2.0",
"node-sass": "^6.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.20.5",
"react-toastify": "^8.1.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/faker": "^5.5.9",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"faker": "^5.5.3",
"prisma": "^3.6.0",
"ts-node": "^10.4.0",
"typescript": "4.5.2"
}
}