-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "waverd-server",
"version": "1.0.0",
"description": "Wave Research server",
"main": "index.js",
"scripts": {
"build": "tsc",
"tsc": "tsc --watch",
"start": "node ./dist/index.js",
"gateway-dev": "node ../gateway/index.js",
"gateway": "pm2 start ../gateway/index.js -i 1 -f",
"test": "echo \"Error: no test specified\" && exit 1",
"gateway-fail-safe": "pm2 start ../gateway/index.js -i -1",
"pm2-start": "pm2 start process.json --name waverd_server",
"kill-server": "pm2 kill && pm2 stop all && npx kill-port 8081",
"dev": "pm2 kill && pm2 stop all && npx kill-port 8081 && pm2 start tsc.sh && pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chukwu3meka/Wave Research-Server.git"
},
"keywords": [
"soccer",
"football",
"manager",
"api"
],
"author": "Wave Research",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chukwu3meka/Wave Research-Server/issues"
},
"homepage": "https://github.com/Chukwu3meka/Wave Research-Server#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.0",
"mongoose": "^8.4.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"socket.io": "^4.7.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/connect-timeout": "^0.0.39",
"@types/cookie-parser": "^1.4.7",
"@types/cookie-session": "^2.0.49",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.9",
"@types/nodemailer": "^6.4.15",
"@types/passport": "^1.0.16",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-twitter": "^1.0.40",
"@types/uuid": "^10.0.0",
"pm2": "^5.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20.10.0 <lts"
}
}