nsfw-api / package.json
mofeibai's picture
Upload 9 files
3a70100 verified
{
"name": "nsfwjs-api",
"version": "1.0.0",
"main": "build/index.js",
"author": "Andrew",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node build/index.js",
"start-dev": "ts-node --project ./tsconfig.json -T --emit --files src/index.ts",
"watch": "ts-node-dev -T src/index.ts",
"lint": "eslint src/ --ext .js,.ts"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.20.0",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^22.1.0",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"module-alias": "^2.2.3",
"multer": "^1.4.4",
"nsfwjs": "^4.1.0",
"reflect-metadata": "^0.2.2",
"simple-ts-express-decorators": "1.3.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0"
},
"_moduleAliases": {
"app": "./build"
}
}