-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "array.io-dapp-example",
"version": "1.0.0",
"description": "React example app",
"main": "app.js",
"scripts": {
"watch": "webpack --config webpack.dev.js --watch",
"start": "webpack-dev-server --config webpack.dev.js --open",
"vagrant": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0 --public 10.0.2.15:8080 --watch-poll",
"build": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "array.io",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"redux-devtools-extension": "^2.13.5",
"webpack-dev-server": "^3.1.9"
}
}