-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "project",
"version": "2.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "nezu",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"lint": "eslint . --ext .ts",
"build": "tsc"
},
"devDependencies": {
"@types/async-lock": "^1.4.0",
"@types/node": "^20.4.2",
"@types/node-cron": "^3.0.8",
"@types/qs": "^6.9.7",
"@types/set-cookie-parser": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@ctrl/deluge": "^4.3.1",
"async-lock": "^1.4.0",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"keyv": "^4.5.2",
"keyv-file": "^0.2.0",
"node-cron": "^3.0.2",
"qs": "^6.11.2",
"set-cookie-parser": "^2.6.0"
}
}