-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.43 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "football-chat-bot-aws",
"version": "1.0.0",
"description": "Football Chat Bot. Integrated into Amazon Web Services",
"author": {
"name": "Andrey Kuznetsov",
"email": "tormozz48@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:tormozz48/football-chat-bot-aws.git"
},
"license": "MIT",
"keywords": [
"NodeJS",
"AWS Lambda",
"TypeScript",
"Serverless",
"DynamoDB",
"Telegram",
"Bot",
"VK"
],
"scripts": {
"prepare": "husky install",
"eslint": "eslint --max-warnings 0 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"depcheck": "depcheck",
"type-coverage": "type-coverage --strict --at-least 95",
"lint": "npm run eslint && npm run depcheck && npm run type-coverage",
"db:migrate": "serverless dynamodb migrate",
"dev": "serverless offline",
"config:credentials": "serverless config credentials --provider aws --overwrite",
"deploy": "serverless deploy --use-local-credentials",
"pretest": "npm run db:migrate",
"test": "jest --silent",
"test:debug": "jest --runInBand",
"test:ci": "jest --silent --coverage --runInBand",
"coverage": "jest --coverage",
"db-gui": "DYNAMO_ENDPOINT=http://localhost:8000 dynamodb-admin"
},
"pre-commit": [
"eslint",
"depcheck",
"type-coverage"
],
"dependencies": {
"@faker-js/faker": "^8.4.1",
"aws-sdk": "^2.1610.0",
"handlebars": "^4.7.8",
"lambda-log": "^3.1.0",
"luxon": "^3.4.4",
"node-vk-bot-api": "^3.5.0",
"telegraf": "^4.16.3",
"telegraf-aws": "^1.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.137",
"@types/jest": "^29.5.12",
"@types/lambda-log": "^3.0.3",
"@types/lambda-wrapper": "^0.3.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/serverless-jest-plugin": "^0.3.3",
"@typescript-eslint/parser": "^7.8.0",
"depcheck": "^1.4.7",
"dynamodb-admin": "^4.6.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"prettier": "^2.6.2",
"serverless": "^3.38.0",
"serverless-dynamodb-local": "^0.2.40",
"serverless-jest-plugin": "^0.4.0",
"serverless-offline": "^13.5.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"type-coverage": "^2.28.2",
"typescript": "^5.4.5"
}
}