-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "next_auth_example",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"engineStrict": true,
"packageManager": "yarn@1.22.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"@next-auth/mongodb-adapter": "^1.1.1",
"@next/font": "13.1.6",
"@reduxjs/toolkit": "^1.9.3",
"@types/node": "18.14.0",
"@types/react": "18.0.28",
"@types/react-datepicker": "^4.10.0",
"@types/react-dom": "18.0.11",
"cookie": "^0.5.0",
"dayjs": "^1.11.7",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"js-cookie": "^3.0.1",
"mongodb": "^5.1.0",
"mongoose": "^6.10.0",
"next": "13.1.6",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.3",
"react-redux": "^8.0.5",
"styled-components": "^5.3.6",
"typescript": "4.9.5"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.3",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.0.7",
"husky": "^8.0.3",
"prettier": "^2.8.7"
}
}