-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 888 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
{
"name": "edge-upstash-redis-ratelimit",
"version": "1.0.0",
"description": "Template Edge Application with Azion and Upstash Redis Ratelimit",
"main": "worker/function.js",
"scripts": {
"dev": "esbuild src/index.ts --bundle --outfile=worker/function.js --watch",
"build": "node build.config.mjs",
"test": "jest --maxWorkers=1"
},
"keywords": [
"edge",
"edge computing",
"azion",
"upstash",
"redis",
"rate limit"
],
"author": "jcbsfilho",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/node-fetch": "^2.6.2",
"esbuild": "^0.17.19",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@upstash/ratelimit": "^0.4.0",
"@upstash/redis": "^1.18.4"
}
}