generated from typescriptstarter/ts-backend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rabbi_cli_app",
"version": "0.1.2",
"private": true,
"description": "",
"scripts": {
"dev": "ts-node-dev src/main.ts",
"start": "ts-node src/main.ts",
"test": "NODE_ENV=test mocha --require=ts-node/register --timeout=20000 __tests__/**/*_test.ts --exit",
"runtest": "NODE_ENV=test mocha --require=ts-node/register --timeout=20000 $1",
"build": "tsc",
"postbuild": "shebang-trim dist/bin/cli.js && chmod +x dist/bin/cli.js",
"ci": "circleci local execute --job build",
"commit": "npx cz"
},
"bin": {
"rabbi": "./dist/bin/cli.js"
},
"keywords": [],
"author": "Zyler",
"license": "",
"dependencies": {
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.1.0",
"@moneybutton/paymail-client": "^0.38.4",
"atob": "^2.1.2",
"aws-sdk": "^2.1280.0",
"axios": "^1.1.3",
"bops": "^1.0.1",
"commander": "^9.3.0",
"dotenv": "^10.0.0",
"hapi-swagger": "^14.3.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"liveread": "^0.3.5",
"nconf": "^0.12.0",
"node-cron": "^3.0.0",
"nodejs-file-downloader": "^4.10.3",
"pg": "^8.4.0",
"powco": "^1.2.2",
"progress-stream": "^2.0.0",
"prom-client": "^14.0.1",
"prompt-async": "^0.9.9",
"rabbi": "^1.21.4",
"s3-streams": "^0.4.0",
"scrypt-ts": "^1.3.2",
"sequelize": "^6.25.7",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"stag-wallet": "^0.2.0",
"uuid-random": "^1.3.2",
"winston": "^3.3.3",
"ws": "^8.2.0"
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.6.0",
"@types/node": "^8.10.66",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"mocha": "^9.1.2",
"sequelize-cli": "^6.6.0",
"shebang-trim": "^1.1.0",
"ts-node": "3.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^3.3.3333"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}