-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "@hastobegood/crypto-bot-parrot",
"version": "0.1.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hastobegood/crypto-bot-parrot.git"
},
"engines": {
"node": "16"
},
"type": "module",
"scripts": {
"prepare": "yarn husky install",
"clean": "rm -rf .aws-sam out reports",
"build": "yarn tsc",
"bundle": "sam build --parallel --beta-features",
"test": "yarn jest",
"test:coverage": "yarn jest --collectCoverage",
"lint": "yarn eslint . --ext .ts,.js",
"lint:fix": "yarn eslint . --ext .ts,.js --fix",
"lint:report": "yarn eslint . --ext .ts,.js --format json -o reports/eslint-report.json ",
"deploy:test": "sam deploy --config-env test --tags Environment=test Application=CryptoBotParrot",
"deploy:prod": "sam deploy --config-env prod --tags Environment=prod Application=CryptoBotParrot"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.100.0",
"@aws-sdk/client-secrets-manager": "^3.100.0",
"@aws-sdk/lib-dynamodb": "^3.100.0",
"@hastobegood/crypto-bot-artillery": "^0.15.1",
"aws-xray-sdk-core": "^3.3.5",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.97",
"@types/jest": "^27.5.1",
"@types/node": "16",
"@types/randomstring": "^1.1.8",
"@types/source-map-support": "^0.5.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"esbuild": "^0.14.42",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-sonar-reporter": "^2.0.0",
"mockdate": "^3.0.5",
"prettier": "^2.6.2",
"randomstring": "^1.2.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"jestSonar": {
"reportPath": "reports"
}
}