-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "guzek-uk-api",
"version": "3.1.0",
"description": "The API for the \"guzek.uk\" website.",
"author": "Konrad Guzek",
"homepage": "https://api.guzek.uk/",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=22.3.0"
},
"private": true,
"main": "index.ts",
"scripts": {
"dev": "NODE_ENV=development NODE_PORT=5017 nodemon --exec ts-node --files index.ts",
"start": "NODE_ENV=development NODE_PORT=5017 ts-node index.ts",
"prod": "NODE_ENV=production NODE_PORT=5017 node dist/index.js",
"compile": "rm -r dist; tsc",
"up": "npm update guzek-uk-common"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kguzek/guzek-uk-api.git"
},
"bugs": {
"url": "https://github.com/kguzek/guzek-uk-api/issues"
},
"resolutions": {
"axios": "^0.28.0",
"dottie": "^2.0.4",
"express": "^4.19.2",
"follow-redirects": "^1.15.6",
"got": "^11.8.5",
"http-cache-semantics": "^4.1.1",
"ip": "^1.1.9",
"json5": "^2.2.2",
"minimatch": "^3.0.5",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"mysql2": "^3.9.4",
"semver": "^7.5.2",
"tar": "^6.2.1",
"tough-cookie": "^4.1.3"
},
"dependencies": {
"axios": "^1.6.0",
"cron": "^3.3.1",
"guzek-uk-common": "latest"
},
"devDependencies": {
"nodemon": "^2.0.16",
"ts-node": "^10.9.2"
}
}