-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 854 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
34
35
36
37
{
"name": "serverless-woo-api",
"version": "1.0.0",
"description": "Example serverless API built with Cloudflare Workers and TypeScript",
"main": "src/index.ts",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"tail": "wrangler tail",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"cloudflare",
"workers",
"serverless",
"api",
"typescript",
"edge-computing"
],
"author": "David JK Tofan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DavidJKTofan/serverless-woo-api"
},
"devDependencies": {
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"wrangler": "^4.60.0"
},
"engines": {
"node": ">=18.0.0"
}
}