-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 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
{
"name": "croupier",
"keywords": [
"keybase",
"keybase bot",
"keybase api",
"stellar",
"stellar lumens",
"stellar network",
"chatbot application",
"crypto",
"social gaming"
],
"homepage": "/~https://github.com/codeforcash/croupier",
"repository": "git@github.com:codeforcash/croupier.git",
"bugs": {
"url": "/~https://github.com/codeforcash/croupier/issues"
},
"scripts": {
"test": "jest --runInBand",
"start": "ts-node index.ts",
"dev": "NODE_ENV=development ts-node index.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint"
],
"*.{json,md}": [
"prettier --write"
]
},
"author": "Zack Burt <zack@codefor.cash>",
"dependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"alasql": "^0.4.11",
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"forever": "^1.0.0",
"honeybadger": "^1.3.0",
"lodash": "^4.17.15",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
"mkdirp": "0.5.1",
"moment": "^2.24.0",
"mongodb": "^3.2.7",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12",
"throttled-queue": "^1.0.5",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.15",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"husky": ">=1",
"jest": "^24.8.0",
"lint-staged": ">=8",
"ts-jest": "^24.0.2"
}
}