-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
41 lines (41 loc) · 1007 Bytes
/
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
{
"name": "@hackclub/scrappy-bot",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"format": "prettier --write .",
"checkFormat": "prettier --check ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.712.0",
"@aws-sdk/lib-storage": "^3.703.0",
"@mux/mux-node": "^9.0.1",
"@prisma/client": "5.19.1",
"@slack/bolt": "^4.1.1",
"airtable": "^0.12.2",
"airtable-plus": "^1.0.4",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0",
"date-season": "^0.0.2",
"dotenv": "^16.4.5",
"eslint": "^9.16.0",
"express": "^4.21.2",
"form-data": "^4.0.0",
"heic-convert": "^2.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.19",
"node-emoji": "^2.2.0",
"node-fetch": "2.6.1",
"node-statsd": "^0.1.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"nodemon": "^3.1.7",
"prettier": "3.4.2",
"prisma": "5.19.1"
}
}