-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 911 Bytes
/
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
{
"name": "kouko",
"version": "1.0.0",
"description": "An HTTP Bittorrent tracker",
"main": "build/app.js",
"type": "module",
"scripts": {
"local": "npm run build && node build/app.js",
"start": "node build/app.js",
"dev": "nodemon",
"build": "tsc -p ."
},
"author": "Raghu Saxena",
"license": "ISC",
"dependencies": {
"@ckcr4lyf/logger": "^0.0.5",
"@types/express-rate-limit": "^5.0.0",
"@types/morgan": "^1.9.1",
"@types/redis": "^2.8.25",
"@types/serve-favicon": "^2.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.2",
"express-rate-limit": "^5.1.3",
"ioredis": "^5.0.3",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^14.0.27",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "~4.5.5"
}
}