forked from ubiquity/ubiquibot-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "ubiquibot-logging",
"version": "1.0.0",
"description": "UbiquiBot Public Log Viewer",
"main": "index.ts",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=v18.0.0"
},
"scripts": {
"build:prod": "tsx ./esbuild/esbuild.prod.ts",
"format": "run-s format:prettier format:lint",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"start": "tsx ./esbuild/esbuild.dev.ts"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.2.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@supabase/supabase-js": "^2.32.0",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"esbuild": "^0.19.2",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tsx": "^3.12.7",
"typescript": "^5.1.0"
},
"keywords": [
"typescript",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"dotenv": "^16.3.1"
}
}