-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^3.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"apollo-boost": "^0.1.10",
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"dotenv": "^6.0.0",
"express": "^4.15.4",
"express-graphql": "^0.6.12",
"express-session": "^1.15.6",
"google-places-autocomplete-service": "0.0.3",
"graphql": "^0.13.2",
"if-env": "^1.0.4",
"immutable": "^3.8.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mysql2": "^1.5.3",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"react-apollo": "^2.1.6",
"react-moment": "^0.7.7",
"react-popper": "^1.0.0-beta.6",
"react-router-dom": "^4.3.1",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0",
"yelp-api": "^1.0.3"
}
}