forked from Vong3432/Weekly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "weekly",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"client": "npm start --prefix client",
"server": "nodemon server.js",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "10.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vong3432/Weekly.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vong3432/Weekly/issues"
},
"homepage": "https://weeklyappcalendar.herokuapp.com/",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.5",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.3",
"nodemailer": "^6.5.0",
"react-google-login": "^5.2.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redis": "^3.1.2"
},
"devDependencies": {
"concurrently": "^6.5.1",
"nodemon": "^2.0.15"
}
}