-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "gosignal",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "node --experimental-strip-types src/index.ts",
"dev:watch": "node --watch --experimental-strip-types src/index.ts",
"check:llm": "node --experimental-strip-types src/scripts/checkLlm.ts",
"proof:hosted": "node --experimental-strip-types src/scripts/verifyHosted.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node server.js",
"check": "tsc -p tsconfig.json --noEmit",
"verify": "npm run check && npm test && npm run build && node --check server.js",
"smoke": "node --experimental-strip-types src/scripts/smoke.ts",
"test": "node --experimental-strip-types --test test/**/*.test.ts"
},
"dependencies": {
"@slack/bolt": "^4.0.0",
"@slack/web-api": "^7.18.0",
"dotenv": "^16.4.5",
"pg": "^8.13.1"
},
"devDependencies": {
"@slack/cli-hooks": "^1.3.3",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.11",
"typescript": "^5.7.2"
}
}