This repository was archived by the owner on Dec 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.26 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.26 KB
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
{
"name": "cb-react-toolbox",
"version": "0.1.0",
"main": "./lib/index.js",
"scripts": {
"build": "yarn run build:lib",
"build:lib": "cross-env BABEL_ENV=production babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run build",
"test": "cross-env NODE_ENV=test jest --config=jest.json --coverage",
"lint": "eslint -c ./.eslintrc.yml --ext .jsx,.js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codebiosys/cb-react-toolbox.git"
},
"dependencies": {
"lodash": "^4.17.5",
"moment": "^2.20.1",
"react-notification-system-redux": "^1.2.0",
"react-router-dom": "^4.3.1",
"redux-effects": "^0.4.3",
"redux-saga": "^0.16.2",
"unfetch": "^4.0.1",
"yarn": "^1.5.1"
},
"peerDependencies": {
"apollo-link": "^1.2.1",
"bootstrap-css-only": "^3.3.7",
"graphql": "^0.13.2",
"react": "v16.2.0",
"react-bootstrap": "^0.31.3",
"react-dom": "v16.2.0",
"react-fa": "^5.0.0",
"react-notification-system-redux": "^1.2.0",
"react-redux": "5.0.7",
"react-router-dom": "^4.2.2",
"react-visibility-sensor": "^3.11.0",
"redux": "^3.7.2",
"redux-form": "v7.3.0"
},
"devDependencies": {
"@storybook/addon-info": "^3.3.10",
"@storybook/addon-knobs": "^3.3.10",
"@storybook/react": "^3.3.10",
"autoprefixer": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.0",
"babel-plugin-react-docgen": "^1.8.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.1",
"babel-preset-jest": "^20.0.3",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "3.3.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-jest-enzyme": "^5.0.3",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.1",
"faker": "^4.1.0",
"file-loader": "^0.11.2",
"istanbul": "^0.4.5",
"jest": "v22.4.2",
"jest-environment-enzyme": "^5.0.3",
"jest-enzyme": "5.0.3",
"node-sass": "^4.5.3",
"postcss-modules-values": "^1.3.0",
"prop-types": "^15.5.10",
"react": "v16.2.0",
"react-addons-shallow-compare": "^15.6.0",
"react-bootstrap": "^0.31.5",
"react-dom": "v16.2.0",
"react-fa": "^5.0.0",
"react-idle-timer": "^2.0.1",
"react-moment-proptypes": "^1.4.0",
"react-redux": "5.0.7",
"react-test-renderer": "v16.2.0",
"react-visibility-sensor": "^3.11.0",
"redux": "3.7.2",
"redux-form": "v7.3.0",
"redux-test-utils": "^0.2.1",
"resolve-url-loader": "^2.1.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0"
}
}