This repository has been archived by the owner on Aug 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.56 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
{
"name": "@trmapi/trmapi",
"version": "0.0.0-development",
"description": "JSON API para consultar la Tasa Representativa del Mercado en la Superintendencia Financiera de Colombia.",
"main": "dist/handler.js",
"scripts": {
"format": "prettier --write **/*.{js,ts,css,less,scss,vue,json,gql,md,yml,yaml}",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest --coverage",
"dynamodb:up": "docker-compose up -d dynamodb",
"dynamodb:bootstrap": "node dynamodb/bootstrap.js",
"dynamodb:logs": "docker-compose logs -f",
"dynamodb:start": "npm-run-all dynamodb:up --parallel dynamodb:logs dynamodb:bootstrap",
"start:server": "sam local start-api --env-vars env.json --docker-network trmapi_dynamodb",
"start:dev": "npm-run-all --parallel dynamodb:start build:watch start:server",
"build": "webpack",
"build:watch": "npm run build -- --watch",
"sam:package": "sam package --template-file template.yaml --s3-bucket trmapi --output-template-file packaged.yaml",
"sam:deploy": "sam deploy --template-file packaged.yaml --stack-name trmapi --capabilities CAPABILITY_IAM",
"sam:validate": "sam validate -t template.yaml",
"outputs": "aws cloudformation describe-stacks --stack-name trmapi --query \"Stacks[].Outputs[]\"",
"deploy": "npm-run-all sam:validate build sam:package sam:deploy",
"build:docs": "spectacle -t docs -l ./assets/trmapi-logo.png swagger.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/trmapi/trmapi.git"
},
"keywords": [
"Colombia",
"trm",
"tasa de cambio",
"tasa representativa del mercado",
"Superintendencia Financiera de Colombia",
"tcrm"
],
"author": "Mauricio Robayo <[email protected]> (https://www.archemiro.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/trmapi/trmapi/issues"
},
"homepage": "https://www.trmapi.com",
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^8.3.3",
"codecov": "^3.1.0",
"csv-parse": "^4.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^4.2.1",
"jest": "^24.9.0",
"lint-staged": "^10.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"redoc-cli": "^0.9.4",
"semantic-release": "^17.0.0",
"spectacle-docs": "^1.0.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@trmapi/cambio": "^1.0.1",
"aws-sdk": "^2.616.0"
},
"files": [
"dist"
]
}