-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 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
{
"name": "Watchdog",
"description": "Dcinside image crawler with NSFW detection",
"version": "1.0.0",
"engines": {
"node": ">=20 <21 || >=22 <23"
},
"scripts": {
"lint": "eslint src",
"check": "npx tsc --noEmit",
"build": "npx tsc",
"start": "npm run build && node --no-deprecation dist/index.js",
"pm2:start": "npm run build && npx pm2-runtime start ecosystem.config.js",
"docker:up": "docker-compose -f docker-compose.yml up",
"docker:stop": "docker-compose down",
"docker:build": "npm run build && docker-compose up --build",
"cleaner:build": "(cd cleaner && make)",
"postinstall": "node postinstall.mjs"
},
"_moduleAliases": {
"@constants": "dist/constants",
"@data": "dist/data",
"@types": "dist/types",
"@utils": "dist/utils"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.22.0",
"axios": "^1.9.0",
"cheerio": "^1.0.0",
"dotenv": "^16.5.0",
"file-type": "^20.5.0",
"module-alias": "^2.2.3",
"nsfwjs": "^4.2.1",
"pm2": "^6.0.6",
"sharp": "^0.34.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}