-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
15 lines (15 loc) · 925 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "axelra-interview-challenge-backend",
"version": "0.1.0",
"author": "Axelra AG",
"scripts": {
"postinstall": "npm-recursive-install --skip-root",
"dev": ". ./.env && sam local start-api --port 3001 --template apigateway_template.yaml --parameter-overrides \"ParameterKey=Environment,ParameterValue=$ENVIRONMENT ParameterKey=ApiHost,ParameterValue=$API_HOST ParameterKey=ApiPort,ParameterValue=$API_PORT ParameterKey=MongoDB,ParameterValue=$MONGO_DB\"",
"dev-windows": "sam local start-api --port 3001 --template apigateway_template.yaml --parameter-overrides \"ParameterKey=Environment,ParameterValue=%ENVIRONMENT% ParameterKey=ApiHost,ParameterValue=%API_HOST% ParameterKey=ApiPort,ParameterValue=%API_PORT% ParameterKey=MongoDB,ParameterValue=%MONGO_DB%\"",
"build-deploy": "sh build_and_deploy.sh"
},
"dependencies": {
"recursive-install": "^1.4.0"
},
"devDependencies": {}
}