-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
37 lines (37 loc) · 1015 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
35
36
37
{
"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": "^3.20.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"body-parser": "^1.20.2",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"multer": "^1.4.4",
"nsfwjs": "^2.4.2",
"reflect-metadata": "^0.1.13",
"simple-ts-express-decorators": "1.3.0",
"typescript": "^5.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0"
},
"_moduleAliases": {
"app": "./build"
}
}