-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.09 KB
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
{
"name": "vita-admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"@mui/x-data-grid": "^5.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^16.11.36",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"axios": "^0.27.2",
"notistack": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.32.2",
"react-loader-spinner": "^5.1.5",
"react-query": "^3.39.1",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.4",
"typescript": "^4.6.4"
},
"scripts": {
"dev": "npm run start",
"start": "vite --open --port 3001",
"build": "tsc && vite build",
"preview": "vite preview --port 3000",
"prepare": "husky install",
"pretty": "npx prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" --ignore-pattern node_modules/ --ignore-pattern dist/",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --ignore-pattern node_modules/ --ignore-pattern dist/ --fix",
"pre-commit": "npm run pretty && npm run lint:fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.27.0",
"husky": "^7.0.0",
"prettier": "^2.6.2",
"vite": "^3.0.0",
"vite-plugin-svgr": "^2.2.0",
"vite-tsconfig-paths": "^3.5.0"
}
}