-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-devilish",
"version": "1.0.0",
"description": "A devilishly simple react/flux/node/express scaffold",
"main": "client/js/Root.js",
"repository": {
"type": "git",
"url": "git+https://github.com/johnBartos/React-Devilish.git"
},
"author": "John Bartos",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnBartos/React-Devilish/issues"
},
"homepage": "https://github.com/johnBartos/React-Devilish#readme",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta7",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bootstrap": "^4.0.0-alpha.2",
"browserify": "^12.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.11.3",
"express": "^4.13.3",
"flux": "^2.1.1",
"history": "^1.17.0",
"json-loader": "^0.5.4",
"keymirror": "^0.1.1",
"nodemon": "^1.8.1",
"npm-run-all": "^1.4.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"reactify": "^1.1.1",
"redux": "^3.0.5",
"redux-devtools": "^3.0.1",
"request": "^2.65.0",
"request-promise": "^1.0.2",
"watchify": "^3.6.1",
"webpack": "^1.12.12",
"whatwg-fetch": "^0.11.0"
},
"scripts": {
"watch-client": "watchify -o client/bundle.js -v -d client/js/root.js",
"watch-server": "nodemon server/app.js",
"build": "browserify . -t [reactify --es6] > client/bundle.js",
"start": "npm-run-all --parallel watch-client watch-server"
},
"browserify": {
"transform": [
"reactify"
]
},
"dependencies": {
"request": "^2.65.0"
}
}