forked from barman47/thebetforecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "betforecast",
"version": "1.0.0",
"description": "BetForecast is a premium football bet tips service. Our expert tipsters source the best bets for our subscribers everyday!",
"main": "./src/server.ts",
"scripts": {
"client": "npm start --prefix client",
"client-build": "npm run build --prefix client",
"client-install": "cd client && yarn",
"start": "cross-env NODE_ENV=production node server",
"server": "nodemon server",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"deploy": "git push heroku"
},
"engines": {
"node": "v14.15.1",
"npm": "6.14.8",
"yarn": "1.22.10"
},
"keywords": [
"TypeScript",
"JavaScript"
],
"author": "Uzoanya Dominic",
"license": "MIT",
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.56",
"@mailchimp/mailchimp_transactional": "^1.0.31",
"colors": "^1.4.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-force-https": "^1.0.0",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"flutterwave-node-v3": "^1.0.8",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"md5": "^2.3.0",
"moment-timezone": "^0.5.33",
"mongoose": "^5.13.5",
"nodemailer": "^6.6.3",
"nodemailer-mandrill-transport": "^1.2.0",
"request": "^2.88.2",
"validator": "^13.6.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.12"
}
}