This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 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
{
"name": "honbot-api",
"version": "0.0.0",
"author": "Scott Cooper <scttcper@gmail.com>",
"private": true,
"scripts": {
"typeorm": "typeorm",
"makemigrations": "ts-node ./node_modules/.bin/typeorm migration:generate",
"migrate": "ts-node ./node_modules/.bin/typeorm migration:run",
"build": "del dist && tsc",
"build:watch": "tsc -p . -w",
"start": "NODE_ENV=prod DEBUG=honbot* nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"scanner": "NODE_ENV=dev DEBUG=honbot* nodemon --watch 'src/scanner.ts' --exec 'ts-node' src/scanner.ts",
"test": "NODE_ENV=test mocha --exit --require ts-node/register test/*.spec.ts",
"lint": "eslint 'src/**/**/*.ts'",
"lint:fix": "eslint -f codeframe --fix src/**/**/*.ts test/**/**/*.ts"
},
"dependencies": {
"@hapi/hapi": "19.1.1",
"@hapi/hoek": "9.0.4",
"@hapi/joi": "17.1.1",
"@sentry/node": "5.15.5",
"boom": "7.3.0",
"date-fns": "2.12.0",
"debug": "4.1.1",
"good": "8.1.2",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"hapi-sentry": "3.0.0",
"lodash": "4.17.15",
"pg": "8.0.3",
"redis": "3.0.2",
"reflect-metadata": "0.1.13",
"request": "2.88.2",
"request-promise-native": "1.0.8",
"semver": "7.3.2",
"ts-trueskill": "3.0.0",
"typeorm": "0.2.24"
},
"devDependencies": {
"@types/boom": "7.3.0",
"@types/debug": "4.1.5",
"@types/hapi__hapi": "19.0.3",
"@types/hapi__joi": "16.0.12",
"@types/lodash": "4.14.150",
"@types/mocha": "7.0.2",
"@types/node": "13.13.4",
"@types/progress": "2.0.3",
"@types/redis": "2.8.18",
"@types/request-promise-native": "1.0.17",
"@types/semver": "7.1.0",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"del-cli": "3.0.0",
"eslint": "6.8.0",
"eslint-config-xo-space": "0.24.0",
"eslint-config-xo-typescript": "0.28.0",
"eslint-plugin-import": "2.20.2",
"mocha": "7.1.2",
"nodemon": "2.0.3",
"progress": "2.0.3",
"ts-node": "8.9.1",
"typescript": "3.8.3"
},
"repository": "https://github.com/scttcper/honbot-api.git",
"engines": {
"node": ">=8.0.0"
},
"license": "MIT"
}