-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.09 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "zcp-client-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier src --check .",
"lint-staged": "lint-staged",
"husky-install": "husky install",
"type-check": "tsc --project tsconfig.json --pretty --noEmit && eslint --fix . && prettier --write .",
"cypress:open": "cypress open",
"test:e2e": "cypress run"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.5",
"@mui/lab": "^5.0.0-alpha.161",
"@mui/material": "^5.15.5",
"@mui/material-nextjs": "^5.15.5",
"@mui/x-date-pickers": "^6.19.0",
"@react-google-maps/api": "^2.19.2",
"@reduxjs/toolkit": "^1.9.5",
"@types/classnames": "^2.3.1",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.throttle": "^4.1.9",
"@types/nprogress": "^0.2.3",
"@types/react-dropzone": "^5.1.0",
"@types/react-i18next": "^8.1.0",
"@untitled-ui/icons-react": "^0.1.2",
"autoprefixer": "^10.4.17",
"axios": "^1.6.5",
"commitizen": "^4.3.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"formik": "^2.4.5",
"i18next": "^23.7.18",
"jose": "^5.2.1",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"moment": "^2.30.1",
"next": "14.1.0",
"next-auth": "^4.24.5",
"next-pwa": "^5.6.0",
"notistack": "^3.0.1",
"nprogress": "^0.2.0",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-quill": "^2.0.0",
"react-redux": "^8.1.1",
"redux": "^4.2.1",
"sharp": "^0.33.2",
"simplebar-react": "^3.2.4",
"stylis-plugin-rtl": "^2.1.1",
"tailwindcss": "^3.4.1",
"tss-react": "^4.8.5",
"typescript": "^5.3.3",
"yup": "^1.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.0",
"@svgr/webpack": "^8.1.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18.2.7",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"cypress": "^13.6.4",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,md,html}": [
"eslint --fix",
"prettier --write"
]
}
}