-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "react-app-starter",
"version": "1.0.0",
"private": true,
"description": "Couldn't find a Yeoman generator with webpack, react, reflux and react-router.",
"scripts": {
"init": "npm install",
"serve": "npm run init; open 'http://localhost:8080/'; webpack-dev-server --inline --history-api-fallback --content-base public/",
"watch": "npm run init; npm run preview; webpack -w",
"build": "npm run init; webpack",
"preview": "open public/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/jehoshua02/react-app-starter.git"
},
"author": "Joshua Stoutenburg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jehoshua02/react-app-starter/issues"
},
"homepage": "https://github.com/jehoshua02/react-app-starter",
"devDependencies": {
"babel-core": "^4.7.12",
"babel-jest": "^4.0.0",
"babel-loader": "^4.1.0",
"react": "^0.12.2",
"react-router": "^0.12.4",
"reflux": "^0.2.7",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.7.0"
}
}