-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "The server side Node + Express web application",
"main": "index.js",
"engines": {
"node": "15.x",
"yarn": "1.x"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "yarn --cwd ./client/ start",
"dev": "concurrently \"yarn server\" \"yarn client\" \"yarn webhooks\"",
"heroku-postbuild": "YARN_PRODUCTION=false yarn --cwd ./client/ install && yarn --cwd ./client/ build",
"webhooks": "lt -p 5000 -s qwerlkjqwerpaoia"
},
"author": "Habiburrahman",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"localtunnel": "^2.0.1",
"lodash": "^4.17.20",
"mailgun-js": "^0.22.0",
"mongoose": "^5.11.9",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"stripe": "^8.131.1"
}
}