-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@loadable/component": "^5.15.2",
"@mui/icons-material": "^5.10.9",
"@mui/lab": "5.0.0-alpha.104",
"@mui/material": "^5.10.10",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"eslint-plugin-react": "^7.29.4",
"mobx": "^6.5.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^7.3.0",
"mobx-react-lite": "^3.3.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"react-router": "^6.2.2",
"react-router-dom": "^6.4.2"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@types/loadable__component": "^5.13.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router-config": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.24.0",
"eslint-config-alloy": "^4.5.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^6.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.1",
"sass": "^1.49.9",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"lint-staged": {
"**/*.{ts, tsx}": [
"prettier --write .",
"eslint --fix --ext .ts --ext .tsx .",
"git add"
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "eslint --fix --ext .ts --ext .tsx ."
}
}