-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "docat-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.4",
"@types/node": "^20.14.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"fuse.js": "^6.6.2",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"react-router": "^6.23.1",
"react-router-dom": "^6.23.1",
"semver": "^7.6.2",
"typescript": "*",
"vite": "^4.5.1",
"vite-plugin-svgr": "^3.3.0",
"vitest": "^0.34.6",
"web-vitals": "^3.5.0"
},
"scripts": {
"start": "VITE_DOCAT_VERSION=$(git describe --tags --always) vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --watch=false",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"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": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.2",
"prettier": "^3.3.0"
}
}