-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next",
"build": "next build",
"updatePrisma": "npx prisma db push --accept-data-loss && npx prisma generate",
"start": "next start",
"typecheck": "tsc -p tsconfig.json --noEmit --noErrorTruncation --diagnostics",
"lint": "eslint --ext .tsx,.ts",
"prismaStudio": "npx prisma studio"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "4.5.0",
"bootstrap": "^5.2.2",
"next": "12.3.1",
"next-auth": "4",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-bootstrap": "^2.5.0",
"react-csv": "^2.2.2",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-markdown": "8.0.3"
},
"devDependencies": {
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"prisma": "4.5.0",
"typescript": "4.8.4"
}
}