-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 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
36
37
38
39
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "cd client && npm start",
"build":"cd client && npm run build",
"install-client":"cd client && npm install",
"heroku-postbuild":"npm run install-client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.0",
"nodemailer": "^6.7.5",
"nodemon": "^2.0.15",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"stripe": "^9.6.0",
"winston": "^3.7.2"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.29.4"
}
}