-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "aoc-bot",
"version": "1.0.0",
"description": "Advent of Code Telegram Bot",
"scripts": {
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"yamllint": "yamllint .",
"cfn-lint": "cfn-lint template.yml",
"lint": "npm run eslint && npm run yamllint && npm run cfn-lint",
"jest": "jest",
"test": "npm run lint && npm run jest",
"deploy": "./deploy.sh",
"integration-tests": "AOC_BOT_INTEGRATION_TESTS=1 jest"
},
"repository": {
"type": "git",
"url": "https://github.com/matushorvath/aoc-bot"
},
"author": "Matus Horvath <matus.horvath@gmail.com>",
"license": "UNLICENSED",
"engines": {
"node": "^20"
},
"files": [
"images/aoc*.png",
"src/*.js",
"src/help.txt",
"template.yml"
],
"deployFiles": [
"package.json",
"package-lock.json",
"node_modules/"
],
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.723.0",
"@aws-sdk/client-ssm": "^3.721.0",
"axios": "^1.7.9",
"luxon": "^3.5.0"
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prebuilt-tdlib": "=0.1008042.0",
"tdl": "^8.0.2",
"yaml": "^2.7.0"
}
}