-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·51 lines (51 loc) · 1.63 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
{
"name": "redux-covenant",
"version": "1.0.6",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server --watch-poll --progress --hotOnly --mode development --config ./webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./webpack.build.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1"
},
"repository":{
"type":"git",
"url":"git+https://github.com/tzuser/redux-covenant"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel": "^6.23.0",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1"
}
}