forked from helius-labs/helius-rpc-proxy
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.14 KB
/
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
37
38
39
40
{
"private": true,
"version": "0.0.0",
"scripts": {
"deploy": "wrangler publish src/index.ts",
"dev": "wrangler dev src/index.ts --local",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"start-stackblitz": "WRANGLER_SEND_METRICS=false wrangler dev src/index.ts --local",
"lint": "npx eslint src",
"pretty": "npx prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@cloudflare/workers-types": "^3.19.0",
"@types/aws-lambda": "^8.10.115",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.4",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"esbuild": "^0.16.17",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"fetch-mock": "^9.11.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "2.8.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"wrangler": "^2.1.14"
},
"dependencies": {
"-": "^0.0.1",
"@aws-sdk/client-cloudwatch-logs": "^3.326.0",
"node-fetch": "^2.6.10"
}
}