-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
32 lines (32 loc) · 877 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
{
"name": "ivanc-web",
"version": "1.0.0",
"description": "Personal website built with React",
"scripts": {
"heroku-postbuild": "npm run build",
"build": "webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node server.js"
},
"author": "Ivan Carballo",
"license": "Apache 2.0",
"devDependencies": {
"react-hot-loader": "^1.3.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.1",
"es6-promise": "^3.1.2",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"imports-loader": "^0.6.5",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"style-loader": "^0.13.1",
"webpack": "^1.12.11",
"whatwg-fetch": "^0.11.0"
}
}