forked from ubiquity/ubiquibot-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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": "telegram-ubiquibot",
"version": "1.0.0",
"main": "index.ts",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=v20.3.0"
},
"scripts": {
"deploy": "wrangler deploy",
"start": "wrangler dev",
"setup-key": "tsx ./deploy-keys.ts",
"format": "run-s format:prettier format:lint",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write ."
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@supabase/supabase-js": "^2.32.0",
"dotenv": "^16.3.1",
"node-forge": "^1.3.1",
"octokit": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"supabase": "^1.86.2",
"tsx": "^3.12.7",
"typescript": "^5.1.0",
"wrangler": "^3.0.0"
}
}