-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "@hackclub/orpheus-bot",
"author": "Max Wofford <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "babel-node -r dotenv/config ./src/index.js",
"start": "node ./build/index.js",
"fmt": "npx prettier \"{src/**,}/*.js\" --single-quote --no-semi --arrow-parens avoid --trailing-comma es5 --write",
"build": "npm run clean && npm run build-babel",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel ./src -d ./build -s --copy-files",
"postinstall": "patch-package"
},
"main": "src/index.js",
"dependencies": {
"@bugsnag/js": "^6.4.0",
"@octokit/request": "^5.3.1",
"airtable": "0.7.2",
"airtable-plus": "^1.0.4",
"animals": "0.0.3",
"botkit": "0.7.4",
"botkit-storage-redis": "^1.1.0",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0-rc.3",
"chrono-node": "^2.2.4",
"css-validator": "^0.11.0",
"dnd5e-dice-roller": "^0.0.13",
"dotenv": "^10.0.0",
"form-data": "^3.0.0",
"haiku-detect": "^1.1.0",
"humanize-duration": "^3.20.1",
"isomorphic-unfetch": "^3.0.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"patch-package": "^8.0.0",
"pluralize": "^8.0.0",
"pusher": "^5.1.1-beta"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0"
}
}