-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "react-fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "^8.1.1",
"npm": "^5.3.0"
},
"scripts": {
"server": "nodemon index.js --ignore client",
"client": " cd client && yarn start && cd ..",
"dev": " concurrently \"yarn server\" \"yarn client\" ",
"start": "node index.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && yarn && yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "skhamoud",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.2.1",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.15.4",
"mongoose": "^4.13.6",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"stripe": "^5.4.0",
"validator": "^9.4.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1"
}
}