-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.7 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
{
"name": "personal-account-frontend",
"description": "Personal account web app for WISH EDU ecosystem",
"license": "BSD-3-Clause",
"private": false,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=10",
"pnpm": ">=3"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint . --color",
"lint:fix": "eslint . --fix",
"prepare": "husky && husky install",
"precommit": "lint-staged"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@million/lint": "^0.0.73",
"@mui/icons-material": "^5.15.14",
"@mui/lab": "5.0.0-alpha.169",
"@mui/material": "^5.15.19",
"@mui/styled-engine": "^5.15.14",
"@mui/styled-engine-sc": "6.0.0-alpha.18",
"@reduxjs/toolkit": "^2.2.1",
"@remix-run/router": "^1.15.3",
"axios": "^1.6.8",
"million": "^3.0.6",
"moment": "^2.30.1",
"mui-color-input": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.51.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.22.3",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.8",
"styled-normalize": "^8.1.1",
"throttle-debounce": "^5.0.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vite": "^5.2.11",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-minify": "^1.5.2"
},
"lint-staged": {
"*.{ts, tsx}": [
"pnpm lint"
],
"*.json": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}