-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:scripts": "eslint --ext .ts,.tsx src",
"lint:styles": "stylelint \"src/**/*.css\"",
"prepare": "husky install",
"serve": "serve -s dist -p 3000"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@mantine/core": "^5.8.3",
"@mantine/dates": "^5.8.3",
"@mantine/hooks": "^5.8.3",
"@mantine/modals": "^5.8.3",
"@tanstack/react-query": "^4.18.0",
"@tanstack/react-table": "^8.7.0",
"axios": "^1.2.0",
"compose-function": "^3.0.3",
"dayjs": "^1.11.6",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.6",
"react-router-dom": "^6.4.3",
"vite-plugin-tsc": "^0.1.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/compose-function": "^0.0.30",
"@types/js-cookie": "^3.0.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"typescript": "^4.9.3",
"vite": "^3.2.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md,vue,json,ts,tsx,jsx}": "prettier --write"
}
}