-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 948 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 948 Bytes
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
{
"name": "profanity-api",
"version": "1.0.0",
"description": "An experimental API for detecting hate speech and profanity, incorporating rate limiting and request validation functionality, and deploying it on Cloudflare Workers.",
"main": "index.ts",
"scripts": {
"db:seed": "tsx ./src/db/seed.ts",
"format": "prettier \"./src/**/*\" --write --ignore-unknown",
"dev": "wrangler dev ./src/index.ts",
"wrangler:deploy": "wrangler deploy --minify ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/zod-validator": "^0.2.1",
"@upstash/ratelimit": "^1.1.3",
"@upstash/redis": "^1.31.1",
"@upstash/vector": "^1.1.1",
"csv-parser": "^3.0.0",
"hono": "^4.3.7",
"langchain": "^0.1.37",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.12",
"dotenv": "^16.4.5",
"prettier": "^3.2.5",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"wrangler": "^3.56.0"
}
}