forked from ubiquity/ubiquibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.88 KB
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
{
"name": "ubiquibot",
"version": "0.1.0-rc9",
"description": "Enables Ubiquity DevPool automation in your repository.",
"author": "Ubiquity DAO",
"license": "ISC",
"homepage": "https://github.com/ubiquity/bounty-bot.git",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:ci": "ncc build src/index.ts -o dist && mv ./dist/index.js ./bin",
"start": "probot run ./lib/main.js",
"start:watch": "copy-folder-util src/assets/images lib/assets/images && nodemon --exec 'yarn start'",
"format": "prettier --write src",
"format:check": "prettier -c src/**/*.ts",
"clean": "rimraf ./dist ./lib ./node_modules",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@probot/adapter-github-actions": "^3.1.3",
"@sinclair/typebox": "^0.25.9",
"@supabase/supabase-js": "^2.4.0",
"@types/ms": "^0.7.31",
"@uniswap/permit2-sdk": "^1.2.0",
"@vercel/ncc": "^0.34.0",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"axios": "^1.3.2",
"copy-folder-util": "^1.0.0",
"ethers": "^5.7.2",
"husky": "^8.0.2",
"jimp": "^0.22.4",
"lint-staged": "^13.1.0",
"ms": "^2.1.3",
"node-html-to-image": "^3.3.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"probot": "^12.2.4",
"telegraf": "^4.11.2"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^18.0.0",
"@types/source-map-support": "^0.5.6",
"jest": "^26.6.3",
"nock": "^13.0.5",
"rimraf": "3.0.2",
"smee-client": "^1.2.2",
"source-map-support": "^0.5.21",
"supabase": "^1.38.1",
"ts-jest": "^26.4.4",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write"
]
}
}