generated from christopher-caldwell/react-big-calendar-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "modern-calendar",
"description": "Demo of react-big-calendar using TypeScript and React hooks",
"version": "0.0.0",
"private": true,
"scripts": {
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"lint": "eslint --ext .tsx,.ts,.js src",
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"date-fns": "^2.23.0",
"react": "17.0.2",
"react-big-calendar": "^0.35.0",
"react-dom": "17.0.2",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/react": "17.0.22",
"@types/react-big-calendar": "^0.33.2",
"@types/react-dom": "17.0.9",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"rc": "^1.2.8",
"react-scripts": "4.0.3",
"typescript": "4.1.3",
"vite": "^2.5.10",
"vite-plugin-checker": "^0.3.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead"
],
"development": [
"last 1 chrome version"
]
}
}