-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
53
54
55
56
57
58
59
60
{
"name": "rocket-league-slack-bot",
"author": {
"name": "Andrew Moss"
},
"description": "Track Rocket League scores and view Elo rankings within Slack",
"version": "0.1.0",
"license": "MIT",
"main": "src/main.js",
"engines": {
"node": "^12",
"yarn": "^1"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/knex": "^0.16.1",
"@types/koa": "^2.0.50",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa__router": "^8.0.0",
"@types/lolex": "^3.1.1",
"@types/node": "^12.7.4",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"@types/sinon": "^7.0.13",
"@types/sqlite3": "^3.1.5",
"jest": "^24.9.0",
"localtunnel": "^2.0.0",
"lolex": "^5.1.0",
"nodemon": "^1.19.3",
"prettier": "^1.19.1",
"sinon": "^7.4.2",
"typescript": "^3.6.2"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"format": "./node_modules/.bin/prettier src/*.ts --write",
"watch": "./node_modules/.bin/tsc --watch",
"test": "./node_modules/.bin/jest src/*.test.js",
"knex": "./node_modules/.bin/knex",
"main": "node src/main",
"main-inspect": "node --inspect-brk src/main",
"main-watch": "export $(cat .env | xargs) && ./node_modules/.bin/nodemon --inspect src/main"
},
"dependencies": {
"@koa/router": "^8.0.1",
"@slack/events-api": "^2.3.0",
"@slack/interactive-messages": "^1.3.0",
"date-fns": "^2.5.0",
"debug": "^4.1.1",
"knex": "^0.19.5",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"lodash": "^4.17.19",
"objection": "^1.6.11",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"source-map-support": "^0.5.16",
"sqlite3": "^4.1.0"
}
}