This repository was archived by the owner on Dec 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "atomicradio-api",
"version": "1.0.0",
"description": "⚡ Official API for atomicradio.eu made with express.",
"main": "./build/app.js",
"scripts": {
"build": "tsc --skipLibCheck",
"dev": "nodemon",
"start": "tsc --skipLibCheck && node ./build/app.js",
"lint": "tslint -p tsconfig.json --fix"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [],
"author": "Kacper Mura",
"license": "MPL-2.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^5.3.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.2",
"@types/sharp": "^0.29.1",
"@types/socket.io": "^3.0.2",
"@types/ws": "^8.2.0",
"@types/redis": "^2.8.28",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"canvas": "^2.7.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-prometheus-middleware": "^1.1.0",
"fast-node-cache": "^1.2.1",
"ip-anonymize": "^0.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"prom-client": ">= 10.x <= 13.x",
"rate-limiter-flexible": "^2.2.1",
"redis": "^3.1.2",
"sharp": "^0.29.0",
"socket.io": "^4.0.0",
"ws": "^8.0.0"
}
}