This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
88 lines (88 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "node --import tsx src/index.ts",
"test": "jest",
"preformat": "yarn format:prettier",
"format": "yarn format:eslint",
"postformat": "yarn format:cspell",
"format:prettier": "prettier --write src",
"format:eslint": "eslint --fix --ext .ts ./src",
"format:cspell": "cspell --config .cspell.json 'src/**/*.{js,ts,json,md,yml}'",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@keyrxng/rpc-handler": "^1.0.3",
"@octokit/rest": "^20.0.2",
"@openzeppelin/contracts": "^5.0.0",
"@sinclair/typebox": "^0.31.20",
"@supabase/supabase-js": "^2.39.0",
"@types/ms": "^0.7.34",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@uniswap/permit2-sdk": "^1.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.6.2",
"decimal.js": "^10.4.3",
"eslint": "^8.54.0",
"ethers": "^5.7.2",
"husky": "^8.0.3",
"js-tiktoken": "^1.0.7",
"jsdom": "^23.0.1",
"libsodium-wrappers": "^0.7.13",
"lint-staged": "^15.1.0",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"ms": "^2.1.3",
"node-html-parser": "^6.1.11",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"openai": "^4.14.0",
"prettier": "^3.1.0",
"probot": "^12.3.3",
"ts-retry": "^4.2.5",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"yaml": "^2.3.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/libsodium-wrappers": "^0.7.13",
"@types/lodash": "^4.14.202",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.8.9",
"@types/pino-std-serializers": "^4.0.0",
"cspell": "^8.1.3",
"jest": "^29.7.0"
},
"lint-staged": {
"*.ts": [
"yarn format"
],
"src/**.{ts,json}": [
"cspell"
]
},
"nodemonConfig": {
"events": {
"config": "",
"exit": "",
"crash": "",
"restart": "clear && printf '\\033[3J'",
"start": "clear && printf '\\033[3J'"
},
"verbose": true,
"ext": "ts",
"exec": "yarn start"
}
}