forked from greenfield-angularAngels/TravelPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
78
79
80
81
82
83
84
{
"name": "TravelPlanner",
"version": "1.0.0",
"description": "Hack Reactor Greenfield Project",
"author": "",
"main": "index.js",
"license": "ISC",
"engines": {
"node": "6.9.5",
"npm": "5.3.0"
},
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"start": "nodemon server/index.js",
"heroku-postbuild": "webpack -d",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register **/*Spec.jsx"
},
"dependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.7.2",
"bcrypt": "~0.8.1",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"classnames": "^2.2.5",
"connect-flash": "~0.1.1",
"cookie-parser": "latest",
"ejs": "latest",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"express": "^4.15.0",
"express-session": "latest",
"google-places": "0.0.2",
"googleplaces": "^0.6.1",
"jquery": "^3.1.1",
"material-ui": "^0.19.0",
"mongoose": "^4.8.6",
"morgan": "~1.5.2",
"nodemon": "^1.11.0",
"passport": "~0.2.1",
"passport-facebook": "^2.1.1",
"passport-local": "~1.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "2.4.0",
"react-shallow-render": "^1.0.1",
"react-shallow-testutils": "^3.0.0",
"react-test-renderer": "^15.6.1",
"react-test-utils": "0.0.1",
"request": "^2.81.0",
"sabre-dev-studio": "^1.2.0",
"webpack": "^3.5.2",
"qpx-express": "^16.1.12",
"yelp-fusion": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-register": "^6.7.2",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"classnames": "^2.2.5",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"webpack": "^3.5.4",
"nodemon": "^1.11.0",
"mongoose": "^4.8.6",
"chai": "^4.1.1",
"jest": "^20.0.4",
"mocha": "^3.5.0",
"qpx-express": "^16.1.12",
"react-addons-test-utils": "^15.6.0"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}