forked from 6/openai-caching-proxy-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.4 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
41
42
43
44
{
"name": "openai-caching-proxy-worker",
"version": "0.0.0",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-no-async-without-await": "^1.2.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-miniflare": "^2.11.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.9.4",
"wrangler": "2.6.2",
"yarn-deduplicate": "^6.0.0"
},
"private": true,
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler publish",
"check-types": "tsc --noEmit",
"deduplicate": "yarn-deduplicate && yarn install",
"lint": "yarn lint:ts --cache",
"lint:ci": "yarn lint:ts",
"lint:ts": "eslint . --ext .js,.ts,.json",
"prettier:all": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|html)\"",
"test": "jest --config test/jest.config.js"
},
"dependencies": {
"@upstash/redis": "^1.18.1"
}
}