forked from LOA-Labs/loa-node-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "loa-node-toolkit",
"version": "0.2.6",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/configs/*.json dist/",
"start": "NODE_ENV=production node ./dist/index.js",
"start-ts-old": "NODE_ENV=production node -r ts-node/register ./src/index.ts",
"build": "npm run clean && tsc --allowSyntheticDefaultImports src/*.ts --outDir ./dist && npm run copy-files",
"devprod": "nodemon --config nodemon.prod.json src/index.ts",
"dev": "NODE_ENV=development nodemon --config nodemon.json src/index.ts",
"start-ts": "nodemon --config nodemon-prod.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"deploy": "gpl; nrb; apprestart;"
},
"devDependencies": {
"@types/node": "^14.11.2",
"nodemon": "^2.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.29.5",
"@cosmjs/stargate": "^0.29.5",
"@cosmjs/tendermint-rpc": "^0.29.5",
"@slack/webhook": "^6.1.0",
"@types/bech32": "^1.1.4",
"axios": "^0.27.2",
"bech32": "^2.0.0",
"bip32": "^3.1.0",
"check-disk-space": "^3.3.1",
"copyfiles": "^2.4.1",
"cosmjs-types": "^0.5.1",
"croner": "^4.3.16",
"discord-interactions": "^3.2.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"human-date": "^1.4.0",
"node-fetch": "^3.2.10",
"rimraf": "^3.0.2",
"tsconfig-paths": "^4.1.2",
"twitter-api-v2": "^1.12.8",
"uuid": "^8.3.2"
}
}