forked from umakantp/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.95 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
90
91
{
"name": "@umakantp/react-date-range",
"version": "2.1.1",
"description": "A React component for choosing dates and date ranges.",
"main": "dist/index.js",
"scripts": {
"clear": "rm -r styleguide",
"start": "npm run build:css & styleguidist server",
"build": "npm run build:css & npm run build:js & styleguidist build",
"build:css": "postcss 'src/styles.scss' -d dist --ext css & postcss 'src/theme/*.scss' -d 'dist/theme' --ext css",
"build:js": "babel ./src --out-dir ./dist --ignore test.js",
"lint": "eslint 'src/**/*.js'",
"test": "jest --testPathIgnorePatterns=styleguide --testPathIgnorePatterns=node_modules --testPathIgnorePatterns=dist",
"preversion": "npm run clear & npm run build"
},
"keywords": [
"react",
"date",
"range",
"datepicker",
"rangepicker"
],
"contributors": [
"Burak Can <[email protected]> (https://github.com/burakcan)",
"Mehmet Kamil Morcay <[email protected]> (https://github.com/mkg0)",
"Kamyar Ghasemlou <[email protected]> (https://github.com/kamyar)",
"Engin Semih Basmacı <[email protected]> (https://github.com/mortargrind)",
"Onur Kerimov <[email protected]> (https://github.com/onurkerimov)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/umakantp/react-date-range"
},
"bugs": {
"url": "http://github.com/umakantp/react-date-range/issues"
},
"browserslist": [
"defaults"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-list": "^0.8.13",
"shallow-equal": "^1.2.1"
},
"peerDependencies": {
"date-fns": ">=3.0.0",
"react": ">=18.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"babel-plugin-date-fns": "^2.0.0",
"css-loader": "^3.6.0",
"date-fns": "^3.0.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.3",
"precss": "^4.0.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-styleguidist": "^13.1.1",
"style-loader": "^1.3.0",
"url-loader": "^3.0.0",
"webpack": "^5.89.0"
},
"types": "./types/index.d.ts"
}