-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@blockfrost/blockfrost-for-slack",
"version": "1.0.0",
"private": true,
"description": "Blockfrost integration for Slack",
"main": "dist/app.js",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"start": "yarn run build && node dist/app.js"
},
"license": "MIT",
"dependencies": {
"@blockfrost/blockfrost-js": "^6.0.0-beta.0",
"@sentry/integrations": "^7.89.0",
"@sentry/node": "^7.89.0",
"@slack/bolt": "^3.14.0",
"@slack/logger": "^4.0.0",
"@slack/web-api": "^6.9.0",
"config": "^3.3.9",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pg-promise": "^11.5.4"
},
"devDependencies": {
"@types/config": "^3.3.1",
"@types/express": "^4.17.19",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "^6.1.1",
"express-serve-static-core": "^0.1.1",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
},
"type": "module",
"packageManager": "[email protected]"
}