-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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": "month-range-calendar",
"private": false,
"version": "0.0.2",
"type": "module",
"description": "a react component which will help people for building a month range calendar just like a date range picker",
"main": "vite.config.js",
"keywords": [
"month",
"range",
"calendar"
],
"author": "siddhant chopra",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/siddhantchopra/month-range-calendar.git"
},
"bugs": {
"url": "https://github.com/siddhantchopra/month-range-calendar/issues"
},
"homepage": "https://github.com/siddhantchopra/month-range-calendar#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"vite": "^5.3.1"
}
}