-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.34 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-staged": "lint-staged",
"preview": "vite preview",
"prepare": "husky install",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"apexcharts": "^3.40.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-router-dom": "^6.11.1",
"react-toastify": "^9.1.2",
"recoil": "^0.7.7",
"recoil-persist": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@faker-js/faker": "^8.0.0",
"@hookform/devtools": "^4.3.1",
"@types/node": "^18.16.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"msw": "^1.2.1",
"postcss-lit": "^1.1.0",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"stylelint": "^15.6.0",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-strict-value": "^1.9.2",
"stylelint-scss": "^5.0.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-svgr": "^2.4.0"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix"
],
"src/**/*.{css,scss}": [
"stylelint \"**/*.{scss,css}\""
]
},
"msw": {
"workerDirectory": "public"
}
}