-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "usa-spending-bot",
"version": "0.0.2",
"description": "Bot that provides information about USASpending.gov data in Slack by tracking recipients.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"fmt": "prettier --write .",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch './**/*.ts' --loader ts-node/esm --exec 'ts-node src/index.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
"./*": "./dist/src/*"
},
"typesVersions": {
"*": {
"*": [
"dist/src/*"
]
}
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@slack/bolt": "^3.17.0",
"better-sqlite3": "^9.2.2",
"dotenv": "^16.3.1",
"got": "^12.6.1",
"mysql": "^2.18.1",
"npmlog": "^7.0.1",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.19"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@types/http-cache-semantics": "^4.0.4",
"@types/node": "^20.10.6",
"@types/npmlog": "^7.0.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}