-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.02 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
{
"name": "movie_app",
"version": "1.0.0",
"description": "Discover Movies on TMDB API",
"main": "index.js",
"engines": {
"node": "8.9.1",
"npm": "5.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/MarcusHurney/MovieApp.git"
},
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon index.js --ignore client",
"build:client": "NODE_ENV=production webpack -p --config webpack.prod.config.js --progress",
"postinstall": "npm run clean && npm run build:client",
"clean": "rimraf build/*"
},
"author": "MarcusHurney",
"license": "ISC",
"dependencies": {
"apollo-client": "^0.8.1",
"axios": "^0.15.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.16.0",
"bulma": "^0.6.0",
"connect-mongo": "^1.3.2",
"css-loader": "^0.28.5",
"express": "^4.15.3",
"express-graphql": "^0.6.1",
"express-session": "^1.15.5",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"graphql": "^0.10.5",
"halogen": "^0.2.0",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"lodash": "^4.17.4",
"material-ui": "^0.19.1",
"moment": "^2.18.1",
"mongoose": "^4.11.7",
"node-sass": "^4.5.3",
"nodemailer": "^4.3.1",
"nodemailer-mailgun-transport": "^1.3.5",
"nodemon": "^1.11.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^15.4.2",
"react-apollo": "^0.9.0",
"react-dom": "^15.4.2",
"react-places-autocomplete": "^5.4.3",
"react-redux": "^5.0.6",
"react-router": "^3.0.2",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-form": "^7.0.4",
"redux-form-material-ui": "^4.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0"
}
}