forked from ubiquity/ubiquibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.18 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ubiquibot",
"version": "0.1.2",
"description": "Enables Ubiquity DevPool automation in your repository.",
"author": "Ubiquity DAO",
"license": "MIT",
"homepage": "https://github.com/ubiquity/ubiquibot.git",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"inspect": "node --inspect node_modules/.bin/probot run ./dist/main.js",
"clean": "rimraf ./dist ./node_modules",
"format": "run-s format:prettier format:eslint 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}'",
"start:watch": "nodemon --exec 'bun start'",
"start": "probot run ./dist/main.js",
"format:knip": "knip",
"format:knip-ci": "knip --no-exit-code --reporter json",
"prepare": "husky install",
"test": "jest",
"logs:netlify": "bun netlify logs:function webhooks"
},
"dependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@netlify/functions": "^2.4.0",
"@octokit/rest": "^20.0.2",
"@openzeppelin/contracts": "^5.0.0",
"@probot/adapter-github-actions": "^3.1.3",
"@sinclair/typebox": "^0.31.22",
"@supabase/supabase-js": "^2.4.0",
"@types/ms": "^0.7.31",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@typescript-eslint/typescript-estree": "^7.0.1",
"@uniswap/permit2-sdk": "^1.2.0",
"@vercel/ncc": "^0.34.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.3.2",
"cspell": "^7.0.0",
"decimal.js": "^10.4.3",
"ethers": "^5.7.2",
"husky": "^8.0.2",
"js-tiktoken": "^1.0.7",
"jsdom": "^22.1.0",
"libsodium-wrappers": "^0.7.11",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.2",
"ms": "^2.1.3",
"node-html-parser": "^6.1.5",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"openai": "^4.2.0",
"prettier": "^2.7.1",
"probot": "^12.2.4",
"smee-client": "^2.0.0",
"tsx": "^3.12.7",
"ubiquibot-logger": "^0.3.5",
"yaml": "^2.2.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.4",
"@types/libsodium-wrappers": "^0.7.10",
"@types/lodash": "^4.14.202",
"@types/markdown-it": "^13.0.4",
"@types/node": "^18.0.0",
"@types/source-map-support": "^0.5.6",
"eslint": "^8.43.0",
"jest": "^29.6.2",
"knip": "^3.7.1",
"octokit": "^3.1.2",
"rimraf": "3.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=20.10.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"nodemonConfig": {
"events": {
"config": "",
"exit": "",
"crash": "",
"restart": "clear && printf '\\033[3J'",
"start": "clear && printf '\\033[3J'"
},
"verbose": true,
"ext": "ts",
"exec": "bun start"
},
"packageManager": "[email protected]"
}