-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.65 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
{
"name": "federation-serverless",
"version": "1.0.0",
"description": "Js implementation of Federation protocol server.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "npm run lint",
"test": "jasmine",
"server": "claudia-local-api --api-module api/index.js",
"db:init": "cd infrastructure && terraform init",
"db:setup:workspaces": "cd infrastructure && terraform workspace new dev && terraform workspace new prod",
"db:plan": "cd infrastructure && terraform workspace select dev && terraform plan -var-file='../api/claudia.json'",
"db:plan:prod": "cd infrastructure && terraform workspace select prod && terraform plan -var-file='../api/claudia.json'",
"db:apply": "cd infrastructure && terraform workspace select dev && terraform apply -var-file='../api/claudia.json'",
"db:apply:prod": "cd infrastructure && terraform workspace select prod && terraform apply -var-file='../api/claudia.json'",
"db:destroy": "cd infrastructure && terraform workspace select dev && terraform destroy -var-file='../api/claudia.json'",
"db:destroy:prod": "cd infrastructure && terraform workspace select prod && terraform destroy -var-file='../api/claudia.json'",
"api:create": "claudia create --profile space-center --config api/claudia.json --region us-east-1 --api-module api/index --timeout 120 --policies policies --version development --env dev",
"api:deploy": "claudia update --profile space-center --config api/claudia.json --version development --env dev",
"api:deploy:prod": "claudia update --profile space-center --config api/claudia.json --version production --env prod",
"api:destroy": "claudia destroy --source api/index --config api/claudia.json --version development --env dev",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/space-center/federation-serverless.git"
},
"author": "Nicolas Gaviria Mejia",
"license": "",
"bugs": {
"url": "https://gitlab.com/space-center/federation-serverless.git/issues"
},
"homepage": "https://gitlab.com/space-center/federation-serverless.git#README",
"devDependencies": {
"claudia": "^5.1.1",
"claudia-local-api": "^2.0.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jasmine": "^2.10.1",
"express": "^4.16.3",
"husky": "^0.14.3",
"jasmine": "^3.2.0"
},
"dependencies": {
"aws-sdk": "^2.307.0",
"bluebird": "^3.5.2",
"claudia-api-builder": "^4.1.1",
"lodash": "^4.17.13",
"moment": "^2.22.2",
"stellar-sdk": "^0.13.0",
"yup": "^0.26.5"
}
}