-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
45
46
{
"name": "orca-cloudflare-proxy",
"version": "1.0.17",
"description": "A cloudflare worker for caching data from orca",
"main": "src/index.ts",
"repository": "https://github.com/p2p-org/orca-cloudflare-proxy",
"author": "Kirill Shakirov",
"license": "MIT",
"private": false,
"scripts": {
"dev": "npx wrangler dev --env development",
"publish": "yarn increment:patch npx wrangler publish --env production",
"increment:patch": "yarn version --patch",
"lint:es": "eslint ./src --ext js,ts,tsx --cache --quiet",
"lint:type": "tsc --noEmit --project ./tsconfig.json --emitDeclarationOnly false",
"lint:prettier": "pretty-quick --staged",
"lint:commit": "yarn commitlint --edit",
"prepare": "husky install",
"test": "jest --watchAll"
},
"dependencies": {
"itty-router": "^2.6.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@cloudflare/workers-types": "^3.10.0",
"@commitlint/config-conventional": "^16.2.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^29.3.1",
"commitlint": "^16.2.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-watch-typeahead": "^2.2.0",
"node-notifier": "^10.0.1",
"prettier": "^2.6.2",
"ts-jest": "^29.0.3"
}
}