-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "torramt-api",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec node --loader ts-node/esm ./src/api.ts --project ./tsconfig.json"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"axios": "^0.25.0",
"firebase-admin": "^12.0.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"lodash.pick": "^4.4.0",
"moment": "^2.29.1",
"nconf": "^0.10.0",
"ssh2-sftp-client": "^2.5.0",
"syno": "^2.2.0",
"torrent-search-api": "^2.1.3",
"transmission-client": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/koa": "^2.13.12",
"@types/koa__cors": "^4.0.3",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/lodash.pick": "^4.4.9",
"@types/nconf": "^0.10.6",
"@types/node": "^20.10.5",
"@types/request": "^2.48.12",
"@types/ssh2-sftp-client": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"volta": {
"node": "20.10.0"
}
}