-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.71 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@rsuite/multi-date-picker",
"version": "1.0.0",
"description": "A date picker that can select multiple dates",
"main": "lib",
"scripts": {
"format:check": "prettier --list-different \"{src,test}/**/*.{tsx,ts,js}\"",
"dev": "webpack serve --mode development --port 3100 --host 0.0.0.0 --progress",
"build": "npm run build:gulp && npm run build:types",
"build:gulp": "gulp build",
"build:types": "npx tsc --emitDeclarationOnly --outDir lib",
"docs": "rm -rf assets && NODE_ENV=production webpack",
"publish-docs": "node docs/gh-pages.js",
"lint": "eslint --ext tsx --ext ts src",
"tdd": "RUN_ENV=test karma start",
"test:component": "NODE_ENV=coverage RUN_ENV=test karma start --single-run",
"test": "npm run lint && npm run test:component",
"prepublishOnly": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/multi-date-picker.git"
},
"files": [
"CHANGELOG.md",
"lib"
],
"keywords": [
"datepicker",
"multi",
"react",
"rsuite"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/multi-date-picker/issues"
},
"homepage": "https://github.com/rsuite/multi-date-picker#readme",
"peerDependencies": {
"react": ">=16.8.0",
"rsuite": ">=5.0.0"
},
"dependencies": {
"@rsuite/icons": "^1.0.2",
"date-fns": "^2.25.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-proto-to-assign": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.3",
"chai": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"css-loader": "^2.1.0",
"del": "^6.0.0",
"dtslint": "^4.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^2.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"html-webpack-plugin": "^5.3.2",
"karma": "^6.3.14",
"karma-chai-dom": "^1.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^2.3.0",
"mocha": "^9.0.2",
"prettier": "^2.4.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^3.1.3",
"rsuite": "^5.0.2",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"style-loader": "^3.3.0",
"typescript": "^4.4.4",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}