-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "18f-bot-charlie",
"version": "2.7.1",
"private": true,
"scripts": {
"format": "prettier -w '**/*.js'",
"format-test": "prettier --check '**/*.js'",
"lint": "eslint '**/*.js'",
"start": "node src/main.js",
"start-dev": "node src/main.js",
"test": "jest '.+/?.+\\.test\\.js'",
"test-coverage": "jest '.+/?.+\\.test\\.js' --coverage"
},
"dependencies": {
"@18f/us-federal-holidays": "^4.0.0",
"@slack/bolt": "^3.5.0",
"aws-sdk": "^2.1354.0",
"axios": "^1.7.7",
"cfenv": "^1.2.3",
"cheerio": "^1.0.0-rc.12",
"csv-parse": "^5.0.4",
"dotenv": "^16.0.0",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.35",
"node-schedule": "^2.0.0",
"pg": "^8.7.1",
"plural": "^1.1.0"
},
"engines": {
"node": "^20.9.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.0.3",
"prettier": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
},
"prettier": {}
}