-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "rb-datepicker",
"version": "0.0.5",
"description": "React bootstrap date range picker",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": "https://github.com/atkawa7/rb-datepicker",
"author": "atkawa7",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"dayjs": "^1.8.12",
"prop-types": "^15.5.0",
"react": "^15.x.x || ^16.x.x",
"react-dom": "^15.x.x || ^16.x.x"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-links": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"@storybook/storybook-deployer": "^2.8.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-react-tools": "^1.1.7",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"mocha": "^6.1.2",
"react-test-renderer": "^16.8.6",
"webpack": "^4.29.6"
},
"scripts": {
"build": "rm -rf dist && NODE_ENV=production babel src --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"test": "mocha --compilers js:@babel/register --require @babel/polyfill"
},
"peerDependencies": {
"@babel/polyfill": "^7.0.0",
"bootstrap": "^4.3.1",
"bootstrap-daterangepicker": "^3.0.3"
}
}