-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "micro-bots",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --check .",
"lint:prettier-fix": "prettier --write .",
"lint:eslint": "eslint --max-warnings=11 src",
"test": "jest",
"deploy:dev": "DOTENV_CONFIG_PATH=.env.local NODE_OPTIONS='-r dotenv/config' serverless deploy --stage dev",
"deploy:prod": "NODE_OPTIONS='-r dotenv/config' serverless deploy",
"invoke": "DOTENV_CONFIG_PATH=.env.local NODE_OPTIONS='-r dotenv/config' serverless invoke local -f $npm_config_function"
},
"dependencies": {
"@aws-sdk/client-eventbridge": "3.691.0",
"@aws-sdk/client-ses": "3.691.0",
"@sentry/node": "8.38.0",
"@slack/web-api": "6.13.0",
"axios": "1.7.7",
"dayjs": "1.11.13",
"dayjs-business-time": "1.0.4",
"exceljs": "4.4.0",
"form-data": "4.0.1",
"fuzzball": "2.1.3",
"jspdf": "2.5.2",
"pdf-lib": "1.17.1",
"serverless-sentry-lib": "2.5.2",
"tmp-promise": "3.0.3"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@types/aws-lambda": "8.10.145",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"dotenv": "16.4.5",
"esbuild": "0.24.0",
"eslint": "9.14.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-only-warn": "1.1.0",
"jest": "29.7.0",
"jest-file-snapshot": "0.7.0",
"mockdate": "3.0.5",
"prettier": "3.3.3",
"serverless": "3.39.0",
"serverless-esbuild": "1.54.5",
"serverless-prune-plugin": "2.1.0",
"serverless-sentry": "2.5.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
}
}