-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "mwb-partners-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"commit": "cz",
"dev": "next dev",
"eslint:check": "next lint",
"eslint:fix": "npm run eslint:check -- --fix",
"lint": "npm run eslint:check && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prepare": "husky install",
"prettier:check": "prettier --check ./**/*.{js,jsx,ts,tsx,json,*rc}",
"prettier:fix": "prettier --write ./**/*.{js,jsx,ts,tsx,json,*rc}",
"start": "next start"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.1.1",
"@mui/icons-material": "^5.13.7",
"@mui/material": "^5.13.7",
"@mui/x-data-grid": "^6.15.0",
"@mui/x-date-pickers": "^6.10.0",
"@svgr/webpack": "^8.0.1",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"dayjs": "^1.11.9",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"next": "^13.4.9",
"next-auth": "^4.23.0",
"ol": "^9.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"swr": "^2.2.1",
"typescript": "5.1.6",
"yup": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@svgr/webpack": "^8.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8"
}
}