-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 966 Bytes
/
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
{
"name": "enghub",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"startup": "node ./lib/startup.mjs",
"migrate": "prisma migrate deploy",
"start:migrate": "prisma migrate deploy && npm run startup && next start",
"lint": "next lint",
"postinstall": "prisma generate",
"test:api": "jest tests/api --runInBand --collect-coverage"
},
"dependencies": {
"@prisma/client": "4",
"@rsuite/icons": "^1.0.2",
"@rsuite/interactions": "^1.5.1",
"@sendgrid/mail": "^7.6.0",
"ics": "^2.35.0",
"nanoid": "^3.2.0",
"next": "^12.3.4",
"next-auth": "^4.22.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rsuite": "^5.22.1",
"swr": "^1.1.2"
},
"devDependencies": {
"@babel/runtime": "^7.21.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"jest": "^29.3.1",
"node-mocks-http": "^1.12.1",
"prisma": "4"
}
}