-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "governance-watcher",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npm run lint && rimraf dist/ && tsc && cp .env dist/.env",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"docker": "docker compose up -d"
},
"author": "",
"license": "ISC",
"dependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@slack/bolt": "^3.13.0",
"@slack/web-api": "^6.8.1",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"cosmjs-types": "^0.7.2",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"mysql": "^2.18.1",
"node-cron": "^3.0.2",
"openai": "^4.25.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}