-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
{
"name": "admin-panel",
"version": "0.1.0",
"private": true,
"compilerOptions": {
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
},
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.4.5",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hookform/devtools": "^4.0.1",
"@hookform/resolvers": "^2.8.0",
"@material-ui/core": "^5.0.0-beta.1",
"@material-ui/icons": "^5.0.0-beta.1",
"@material-ui/styles": "^4.11.4",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"@next-auth/prisma-adapter": "^0.5.2-next.15",
"@prisma/client": "^3.2.1",
"@types/js-cookie": "^3.0.0",
"antd": "^4.16.7",
"apollo-upload-client": "^16.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"graphql": "^15.5.1",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"material-ui-dropzone": "^3.5.0",
"next": "11.0.1",
"next-auth": "^4.0.0-beta.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.15.3",
"styled-components": "^5.3.0",
"zustand": "^3.5.10"
},
"devDependencies": {
"@types/apollo-upload-client": "^14.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/react": "17.0.14",
"@types/styled-components": "^5.1.11",
"babel-plugin-import": "^1.13.3",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"prisma": "^3.2.1",
"typescript": "4.3.5"
}
}