-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "botnorrea-v2-qr",
"version": "1.0.0",
"description": "Botnorrea v2 core: qr functions",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"dev:deploy": "sls deploy --stage dev --verbose",
"dev:destroy": "sls remove --stage dev --verbose",
"prod:deploy": "sls deploy --stage prod --verbose",
"prod:destroy": "sls remove --stage prod --verbose",
"local:qr": "sls invoke local -f qr -p mock_events/event_qr_get.json --stage dev",
"local:qrUpdate": "sls invoke local -f qrUpdate -p mock_events/event_qr_update.json --stage dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jotacemarin/botnorrea-v2-qr.git"
},
"keywords": [
"botnorrea-v2-qr"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jotacemarin/botnorrea-v2-qr/issues"
},
"homepage": "https://github.com/jotacemarin/botnorrea-v2-qr#readme",
"jest": {
"coveragePathIgnorePatterns": [
"src/services/telegram"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"dependencies": {
"axios": "1.6.2",
"http-status": "1.6.2",
"mongoose": "8.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.22.10",
"@babel/preset-typescript": "7.22.5",
"@types/aws-lambda": "8.10.119",
"@types/aws-sdk": "2.7.0",
"@types/jest": "29.5.3",
"@types/node": "20.4.9",
"esbuild": "0.17.19",
"jest": "29.6.2",
"serverless-esbuild": "1.46.0"
}
}