-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "facegen-api",
"version": "1.0.0",
"description": "A Cloudflare Worker API service for serving avatar images with Appwrite backend",
"main": "src/index.ts",
"scripts": {
"setup": "bash scripts/setup.sh development",
"dev": "wrangler dev --env development",
"deploy": "bash scripts/deploy.sh development",
"deploy:staging": "bash scripts/deploy.sh staging",
"deploy:production": "bash scripts/deploy.sh production",
"build": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"cloudflare-workers",
"avatar",
"api",
"appwrite",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.3",
"hono": "^4.12.4",
"node-appwrite": "^13.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240117.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0",
"vitest": "^4.1.4",
"wrangler": "^4.42.0"
},
"engines": {
"node": ">=18.0.0"
}
}