-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "takabase-ai",
"version": "1.0.0",
"description": "Node backend project",
"author": "Denis Iakimenko",
"private": true,
"main": "dist/index.js",
"license": "UNLICENSED",
"engines": {
"node": "18"
},
"watch": {
"start:functions": "*.ts"
},
"scripts": {
"start:dev": "npm-watch start:functions",
"start:deploy": "ts-node deploy.ts",
"start:functions": "npm run build:prod && npx @google-cloud/functions-framework --target=ai --port=8090",
"build:prod": "tsc -p tsconfig.json && mkdir -p dist/nsfw && cp -R src/nsfw dist && mkdir -p dist/public && cp -r src/public dist"
},
"keywords": [
"node",
"fastify",
"nsfw",
"ai",
"swagger",
"javascript"
],
"dependencies": {
"@fastify/compress": "^8.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/etag": "^6.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/rate-limit": "^10.1.1",
"@fastify/static": "^8.0.2",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"@tensorflow/tfjs-node": "^4.19.0",
"busboy": "^1.6.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"firebase-admin": "^12.1.0",
"firebase-functions": "^5.0.1",
"nsfwjs": "^4.1.0",
"openai": "^4.47.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/busboy": "^1.5.4",
"@types/node": "^20.12.12",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fastify-tsconfig": "^2.0.0",
"firebase-functions-test": "^3.2.0",
"npm-check-updates": "^17.1.9",
"npm-watch": "^0.13.0",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}