-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "avconnect",
"private": true,
"scripts": {
"start:dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --no-cache --max-warnings 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.1.0",
"@mui/lab": "^5.0.0-alpha.60",
"@mui/material": "^5.1.0",
"@mui/styles": "^5.1.0",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"lodash.clonedeep": "^4.5.0",
"next": "^12.1.6",
"next-auth": "4.0.0-beta.3",
"path-to-regexp": "^6.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-easy-crop": "^4.0.1",
"react-query": "^3.32.3"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"@types/react-query": "^1.2.9",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"typescript": "4.4.4"
}
}