-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 867 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
{
"name": "nsfw-detector-api",
"version": "1.6.0",
"description": "A simple PoC (Proof of Concept) NSFW Detector API Server",
"exports": null,
"type": "module",
"scripts": {
"start": "node src/index.mjs",
"dev": "nodemon --delay 2 -q src/index.mjs"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.6.0",
"nodemon": "^3.0.1"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@tensorflow/tfjs-node-gpu": "^4.22.0",
"async-mutex": "^0.5.0",
"await-to-js": "^3.0.0",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-bearer-token": "^2.2.0",
"js-sha256": "^0.10.1",
"lru-cache": "^11.0.1",
"sharp": "^0.33.5",
"url-regex-safe": "^4.0.0"
}
}