-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "nsfw-server",
"version": "0.9.0",
"description": "A simple server to return nsfw.js results for images",
"main": "src/nsfwServer.js",
"scripts": {
"test": "npx jest",
"dev": "NODE_ENV=development nodemon runServer.js",
"start": "node runServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-search/nsfw-server.git"
},
"author": "Frido Emans",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-search/nsfw-server/issues"
},
"homepage": "https://github.com/ipfs-search/nsfw-server#readme",
"engines": {
"node": "16.x"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"jest": "^27.5.1",
"supertest": "^6.2.4"
},
"dependencies": {
"@tensorflow/tfjs-node": "^3.19.0",
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"express-healthcheck": "^0.1.0",
"ipfs-core": "^0.14.3",
"nodemon": "^2.0.19",
"nsfwjs": "^2.4.1"
},
"overrides": {
"get-pixels-frame-info-update": {
"jpeg-js": "^0.4.4"
}
}
}