-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.14 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": "node-nsfw-detector-api",
"version": "0.2.2",
"description": "Node.js + Express API for classifying images",
"main": "app.js",
"scripts": {
"start": "node server.js",
"start-production": "NODE_ENV=production pm2 start server.js --name nsfw-detector-api",
"test": "NODE_ENV=test jest --coverage --ci",
"testDev": "NODE_ENV=test jest --watch"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.17.0",
"ansi-regex": ">=6.0.1",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"is-ci": "^3.0.1",
"memjs": "^1.3.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nsfwjs": "^2.4.2",
"seedrandom": "^3.0.5",
"swagger-ui-express": "^5.0.0"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"jest": "^29.7.0",
"superagent": "^8.1.2",
"supertest": "^6.3.4"
}
}