-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "repka-lifeforce",
"version": "2.0.0",
"description": "A set of REST apis that will control and monitor various webapps, websites, and services",
"main": "lifeforce.js",
"author": "Mark Repka",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/send": "^6.0.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"geoip-country": "^5.0.202411052341",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-router": "^13.0.1",
"mime-types": "^2.1.35",
"mongodb": "^6.10.0",
"nodemailer": "^6.9.16",
"transmission": "^0.4.10",
"uuid": "^11.0.2",
"ws": "^8.18.0"
},
"scripts": {
"build": "npm-run-all clean tsc:emit",
"tsc:emit": "tsc",
"tsc:validate": "tsc --noEmit",
"clean": "rimraf ./build",
"lint": "eslint --fix .",
"geoupdate": "node ./node_modules/geoip-country/scripts/updatedb.js",
"start": "node build/lifeforce.js",
"dev": "docker compose up --build"
},
"devDependencies": {
"@types/geoip-country": "^4.0.2",
"@types/http-status-codes": "^1.2.0",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.7",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/node": "^22.9.0",
"@types/nodemailer": "^6.4.16",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}