generated from ctc-uci/npo-frontend-vite-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.23 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
{
"name": "npo-frontend-vite-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"**/*.+(js|jsx|css)\"",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"axios": "^1.6.5",
"csv-writer": "^1.6.0",
"date-fns": "^3.6.0",
"dotenv": "^16.3.1",
"es-abstract": "^1.22.5",
"firebase": "^10.7.1",
"framer-motion": "^10.18.0",
"fuse.js": "^7.0.0",
"ical-generator": "^7.1.0",
"lint-staged": "^14.0.1",
"moment-timezone": "^0.5.45",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "7.37.0",
"react-html5-camera-photo": "^1.5.11",
"react-icons": "^5.0.1",
"react-qr-reader": "^3.0.0-beta-1",
"react-router-dom": "^6.21.1",
"vite-plugin-top-level-await": "^1.4.1",
"yup": "^1.3.3"
},
"lint-staged": {
"*.{js,jsx}": "yarn run eslint"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"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/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"vite": "^4.4.5"
}
}