-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "worthwhile-portal",
"version": "1.0.0",
"description": "Web app to help Worthwhile match candidates to host organisations",
"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/FAC7/worthwhile.git"
},
"author": "FAC7",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC7/worthwhile/issues"
},
"homepage": "https://github.com/FAC7/worthwhile#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",
"node-sass": "^3.4.2",
"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",
"bluebird": "^3.3.4",
"env2": "^2.0.7",
"hapi": "^13.2.2",
"inert": "^3.2.0",
"pg": "^4.5.3",
"react": "^0.14.8",
"react-bootstrap": "^0.28.4",
"react-dom": "^0.14.8",
"react-router": "^2.0.1",
"redis": "^2.6.0-0"
}
}