-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.43 KB
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
55
56
57
58
59
60
61
{
"name": "footballapp",
"version": "1.0.0",
"description": "This is a football (soccer) Prediction and win app built in nodejs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michionist/FootballApp.git"
},
"keywords": [
"betting",
"soccer",
"football",
"bookie",
"punter",
"bookmaker",
"predict-and-win"
],
"engines": {
"node": "10.x"
},
"author": "michionist",
"license": "ISC",
"bugs": {
"url": "https://github.com/michionist/FootballApp/issues"
},
"homepage": "https://github.com/michionist/FootballApp#readme",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"moment": "^2.29.1",
"mysql2": "^2.1.0",
"node-cron": "^2.0.3",
"node-persist": "^3.1.0",
"nodemailer": "^6.4.8",
"randomstring": "^1.1.5",
"redis": "^3.0.2",
"sequelize": "^5.21.7",
"sqlite3": "^4.2.0",
"unescape-js": "^1.1.4",
"uuid": "^8.3.0"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}