This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "vplanweb",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.26.1",
"bootstrap": "^5.1.3",
"i18next": "^21.6.14",
"i18next-http-backend": "^1.4.0",
"react": "^18.0.0",
"react-bootstrap": "^2.2.1",
"react-dom": "^18.0.0",
"react-i18next": "^11.16.2",
"react-icons": "^4.3.1"
},
"scripts": {
"dev": "vite",
"_build": "vite build",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier:write": "prettier --write src/ public/ --ignore-path .prettierignore",
"prettier:check": "prettier --check src/ public/ --ignore-path .prettierignore",
"prettier:ci": "npx prettier --check src/ public/ --ignore-path .prettierignore",
"lint": "eslint src/**/*.ts{,x}",
"prepare": "husky install"
},
"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"
]
},
"devDependencies": {
"@types/node": "^16.11.26",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.22.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^7.0.0",
"prettier": "^2.6.0",
"typescript": "^4.6.3",
"vite": "^2.9.13",
"vite-plugin-eslint": "^1.8.1"
}
}