-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
52
{
"name": "multisig-bot",
"version": "2.0.0",
"description": "Bot for Hive Multisig",
"main": "index.js",
"scripts": {
"start": "npm run typeorm:run-migrations && ts-node src/index.ts",
"dev": "npm run typeorm:run-migrations && nodemon src/index.ts",
"pm2-start": "pm2 start --name multisig-bot --time npm -- start",
"pm2-stop": "pm2 kill",
"build": "tsc -p .",
"typeorm": "typeorm-ts-node-commonjs",
"typeorm:run-migrations": "npm run typeorm migration:run -- -d ./src/database/data-source.ts",
"typeorm:generate-migration": "npm run typeorm -- -d ./src/database/data-source.ts migration:generate ./src/database/migrations/$npm_config_name",
"typeorm:create-migration": "npm run typeorm -- migration:create ./src/database/migrations/$npm_config_name"
},
"keywords": [
"hive",
"multisig",
"backend",
"bot"
],
"author": "keychain",
"license": "ISC",
"dependencies": {
"@hiveio/dhive": "^1.2.6",
"@hiveio/hive-js": "^2.0.7",
"@types/body-parser": "^1.19.3",
"@types/express": "^4.17.13",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"hive-keychain-commons": "^1.2.5",
"hive-tx": "github:hive-keychain/hive-tx-js",
"http": "0.0.0",
"https": "^1.0.0",
"mysql": "^2.18.1",
"node-json-file-storage": "^1.1.0",
"otplib": "^12.0.1",
"request": "^2.88.2",
"socket.io-client": "^4.7.3",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/node": "^18.7.13",
"nodemon": "^2.0.2",
"pm2": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}