-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 869 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
{
"name": "reactrouter-talk",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "babel src --out-dir lib",
"pack": "webpack --config=app.webpack.config.babel.js",
"pack:vendor": "webpack --config=vendor.webpack.config.babel.js -p",
"prestart": "npm run build -- --watch & npm run pack -- --watch &",
"start": "nodemon --watch lib/server --watch dist lib/server/index.js"
},
"author": "Val G",
"license": "ISC",
"devDependencies": {
"assets-webpack-plugin": "^3.5.0",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"webpack": "^1.14.0"
},
"dependencies": {
"express": "^4.14.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-router": "^3.0.1"
}
}