-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.85 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
{
"name": "hal-12000",
"description": "A friend.",
"repository": "github:PostHog/hal-12000",
"author": "PostHog Inc.",
"license": "MIT",
"engines": {
"node": "18.x"
},
"scripts": {
"start:dev": "ts-node-dev --exit-child src/index.ts",
"start": "node dist/index.js",
"types:generate": "supabase gen types typescript --linked > src/data.types.ts",
"compile": "tsc",
"prepare": "husky install",
"lint": "eslint ."
},
"dependencies": {
"@sentry/node": "^7.38.0",
"@sentry/tracing": "^7.38.0",
"@slack/bolt": "^3.12.2",
"@supabase/supabase-js": "^2.24.0",
"luxon": "^3.1.0",
"node-schedule": "^2.1.0",
"@kripod/uuidv7": "0.3.4"
},
"devDependencies": {
"@pagerduty/pdjs": "^2.2.4",
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"**.{js,jsx,mjs,ts,tsx,json,yaml,yml,css,scss}": "prettier --write",
"src/**.{js,jsx,mjs,ts,tsx}": "eslint --fix"
},
"packageManager": "[email protected]+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
}