-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.13 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
{
"name": "my-tv",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/list": "^5.10.1",
"@fullcalendar/react": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/react-select": "^5.0.1",
"axios": "^0.24.0",
"axios-auth-refresh": "^3.2.1",
"framer-motion": "^4",
"ini": "^2.0.0",
"js-cookie": "^3.0.1",
"node-notifier": "^10.0.0",
"object-path": "^0.11.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.21.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.0.2",
"react-select": "^5.2.1",
"typescript": "^4.5.2"
},
"scripts": {
"start": "serve -p 3000 -s build",
"dev": "vite",
"build": "tsc --noEmit && vite build",
"test": "vitest",
"lint": "eslint --ignore-path .eslintignore -c .eslintrc src/",
"format": "prettier --write ."
},
"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/js-cookie": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"vite": "^4.3.9",
"vitest": "^0.32.0"
}
}