-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "Foosbot",
"version": "1.0.0",
"private": true,
"description": "Foosball Slackbot",
"main": "index.js",
"scripts": {
"devTunnel": "ngrok http 3000",
"start": "nodemon --exec babel-node ./src/index.js",
"build": "babel src --out-dir ./dist --source-maps",
"serve": "node ./dist/index.js",
"test": "./node_modules/.bin/mocha --compilers js:@babel/register",
"debug": "node --inspect-brk ./dist/index.js"
},
"author": "Mitch Mikusek <[email protected]>",
"license": "MIT",
"dependencies": {
"@google-cloud/firestore": "3.4.1",
"@slack/bolt": "^1.6.0",
"axios": "0.19.2",
"console.table": "0.10.0",
"moment": "^2.24.0",
"uuid": "3.4.0"
},
"engines": {
"node": "12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}