kidshift-skills/lambda/package.json

26 lines
870 B
JSON
Raw Normal View History

2024-07-15 20:44:24 +00:00
{
2024-07-18 03:41:38 +00:00
"name": "kidshift-skills",
"version": "0.0.1",
2024-07-15 20:44:24 +00:00
"description": "alexa utility for quickly building skills",
"main": "index.js",
"scripts": {
2024-07-18 03:41:38 +00:00
"build": "tsc",
"clean": "rm -rf ./lambda/*",
2024-07-18 03:56:11 +00:00
"deploy": "npm run clean && git checkout dev && git pull origin dev && git checkout master && git merge dev && npm run clean && npm run build && cp package.json lambda/ && git add lambda/ && git commit -m 'Deploy Alexa Skill' && git push origin master && ask deploy"
2024-07-15 20:44:24 +00:00
},
2024-07-18 03:41:38 +00:00
"author": "KidShift Team",
2024-07-15 20:44:24 +00:00
"license": "Apache License",
"dependencies": {
2024-07-18 03:41:38 +00:00
"@types/node": "^20.14.10",
2024-07-15 20:44:24 +00:00
"ask-sdk-core": "^2.7.0",
2024-07-18 03:41:38 +00:00
"ask-sdk-dynamodb-persistence-adapter": "^2.14.0",
2024-07-15 20:44:24 +00:00
"ask-sdk-model": "^1.19.0",
2024-07-16 01:04:19 +00:00
"aws-sdk": "^2.326.0",
2024-07-18 03:41:38 +00:00
"axios": "^1.7.2",
"pjson": "^1.0.9",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
2024-07-15 20:44:24 +00:00
}
2024-07-15 20:46:40 +00:00
}