-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hackerhabitat",
"version": "1.0.0",
"description": "A web-app designed to help people find and create listings for tech-centric, co-living spaces and housing",
"main": "index.js",
"scripts": {
"start": "node server.js",
"postinstall": "NODE_ENV=production webpack --config ./webpack.production.config.js --progress --colors",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richHong/HackerHabitatRedux.git"
},
"engines": {
"node": "6.5.0",
"npm": "3.10.6"
},
"author": "Richard Hong",
"license": "ISC",
"bugs": {
"url": "https://github.com/richHong/HackerHabitatRedux/issues"
},
"homepage": "https://github.com/richHong/HackerHabitatRedux#readme",
"dependencies": {
"axios": "^0.11.1",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"bcrypt-nodejs": "0.0.3",
"body-parser": "latest",
"chai": "~3.5.0",
"connect-multiparty": "^2.0.0",
"es6-promise": "^3.2.1",
"express": "^4.13.3",
"helmet": "^2.1.0",
"http-proxy": "^1.14.0",
"isomorphic-fetch": "^2.2.1",
"jwt-simple": "^0.5.0",
"mongoose": "^4.5.8",
"q": "^1.4.1",
"react": "^0.14.7",
"react-bootstrap": "^0.29.4",
"react-dom": "^0.14.7",
"react-gmaps": "^1.5.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-tweet": "^1.0.22",
"redux": "^3.3.1",
"request": "^2.72.0",
"s3fs": "^2.4.7",
"serve-favicon": "^2.3.0",
"twitter": "^1.4.0",
"underscore": "^1.8.3",
"url": "^0.11.0",
"webpack": "^1.9.11",
"webpack-hot-middleware": "^2.9.1"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.11.6",
"expect": "^1.20.2",
"express": "^4.13.3",
"mocha": "~2.4.5",
"http-proxy": "^1.13.2",
"react-hot-loader": "^1.3.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.9.1"
}
}