-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "react-plugin-system",
"version": "0.0.3",
"description": "Plugin system for ReactJS",
"author": "Kuba Siemiatkowski <kuba@saskla.cz>",
"scripts": {
"build-prod": "webpack --config webpack.prod.js --bail --display-error-details",
"start": "node server.js"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"eslint": "5.9.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "22.1.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.11.1",
"prettier": "1.16.4",
"webpack": "4.2.0",
"webpack-cli": "3.2.1"
},
"dependencies": {
"bundle-loader": "0.5.6",
"file-loader": "2.0.0",
"prop-types": "15.5.6",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-redux": "5.0.6",
"react-router": "3.2.0",
"react-router-redux": "4.0.8",
"redux": "3.7.2",
"redux-dynamic-reducer": "2.0.2"
}
}