-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
73 lines (73 loc) · 2.03 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
64
65
66
67
68
69
70
71
72
73
{
"name": "with-tailwindcss",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"lint": "next lint",
"prisma:init": "prisma migrate dev --name init",
"generate": "prisma generate"
},
"dependencies": {
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^3.6.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bytemd": "1.10.13",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.7.1",
"morgan": "^1.10.0",
"next": "^12.0.4",
"next-auth": "^4.0.2",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"@ant-design/charts": "^1.1.1",
"@reduxjs/toolkit": "^1.5.0",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.3",
"@types/node": "^15.3.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"antd": "^4.17.2",
"autoprefixer": "^10.0.4",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"postcss": "^8.1.10",
"prisma": "^3.6.0",
"react": "^17.0.1",
"react-ace": "^9.3.0",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.0.3",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.5",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-use": "^17.1.1",
"swr": "^1.1.0",
"tailwindcss": "^2.2.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.3",
"uuid": "^8.3.2",
"xlsx": "^0.16.9"
}
}