-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
33 lines (33 loc) · 895 Bytes
/
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
{
"name": "showcase",
"version": "1.0.0",
"private": true,
"main": "src/index.jsx",
"license": "MIT",
"dependencies": {
"geopattern": "^1.2.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "2.1.2",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --config ./webpack.dev.js",
"build": "webpack -p --config ./webpack.prod.js",
"webpack-size": "webpack --config ./webpack.prod.js --json | webpack-bundle-size-analyzer"
}
}