forked from andrewMacmurray/hackathon-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 KB
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
{
"name": "hackathon-boilerplate",
"version": "1.0.0",
"description": "Some boilerplate to get us off to a quick start at hackathons",
"main": "index.js",
"scripts": {
"nodemon": "nodemon backend/lib/server.js --exec babel-node --presets es2015,stage-1",
"server-build": "babel backend/lib -d backend/dist --presets es2015,stage-1",
"production-serve": "node backend/dist/server.js",
"dev": "webpack-dev-server --hot --inline --content-base public/",
"watch": "webpack --watch --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewMacmurray/hackathon-boilerplate.git"
},
"author": "FAC7",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrewMacmurray/hackathon-boilerplate/issues"
},
"homepage": "https://github.com/andrewMacmurray/hackathon-boilerplate#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint-plugin-react": "^5.0.1",
"nodemon": "^1.9.1",
"path": "^0.12.7",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"tape": "^4.5.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.9.1",
"bell": "^7.3.0",
"bluebird": "^3.3.4",
"env2": "^2.0.7",
"hapi": "^13.2.2",
"hapi-auth-cookie": "^6.1.1",
"inert": "^3.2.0",
"jsonwebtoken": "^5.7.0",
"node-sass": "^3.4.2",
"react": "^0.14.8",
"react-bootstrap": "^0.28.4",
"react-dom": "^0.14.8",
"react-redux": "^4.4.5",
"react-router": "^2.0.1",
"redis": "^2.6.0-0",
"redux": "^3.5.1",
"redux-promise": "^0.5.3"
}
}