-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "gadling",
"version": "2.1.1",
"homepage": "https://github.com/penryu/gadling",
"repository": "github:penryu/gadling",
"main": "build/index.js",
"scripts": {
"build": "yarn lint && tsc",
"dev": "yarn lint && ts-node-dev src/index.ts",
"lint": "tsc --noEmit && eslint .",
"migrate": "dbmate up",
"start": "node build/index.js",
"test": "jest"
},
"dependencies": {
"@slack/bolt": "^3.18.0",
"better-sqlite3": "^9.6.0",
"dotenv": "^16.4.5",
"kysely": "^0.27.3",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/jest": "^29.5.9",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"license": "MIT",
"private": true
}