forked from WildCodeSchool/btz-0321-aeviso-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "client",
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"serve": "vite preview --port 5001"
},
"dependencies": {
"@headlessui/react": "^1.3.0",
"@heroicons/react": "^1.0.1",
"@reduxjs/toolkit": "^1.6.0",
"axios": "^0.21.1",
"date-fns": "^2.22.1",
"react": "^17.0.0",
"react-calendar": "^3.4.0",
"react-dom": "^17.0.0",
"react-hook-form": "^7.8.3",
"react-query": "^3.16.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-calendar": "^3.4.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux": "^3.6.0",
"@types/tailwindcss": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"autoprefixer": "^10.2.5",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"tailwindcss": "^2.1.2",
"typescript": "^4.1.2",
"vite": "^2.4.0"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"./node_modules/.bin/eslint --max-warnings=5",
"pretty-quick --staged"
]
},
"proxy": "http://localhost:5000"
}