kidshift-skills/package.json

26 lines
853 B
JSON
Raw Normal View History

2024-07-15 09:04:29 +00:00
{
2024-07-18 03:38:42 +00:00
"name": "kidshift-skills",
"version": "0.0.1",
2024-07-15 09:04:29 +00:00
"description": "alexa utility for quickly building skills",
"main": "index.js",
"scripts": {
2024-07-15 20:32:04 +00:00
"build": "tsc",
2024-07-18 03:41:22 +00:00
"clean": "rm -rf ./lambda/*",
2024-07-18 03:55:38 +00:00
"deploy": "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 09:04:29 +00:00
},
2024-07-18 03:38:42 +00:00
"author": "KidShift Team",
2024-07-15 09:04:29 +00:00
"license": "Apache License",
"dependencies": {
2024-07-15 18:01:56 +00:00
"@types/node": "^20.14.10",
2024-07-15 09:04:29 +00:00
"ask-sdk-core": "^2.7.0",
2024-07-16 00:42:24 +00:00
"ask-sdk-dynamodb-persistence-adapter": "^2.14.0",
2024-07-15 09:04:29 +00:00
"ask-sdk-model": "^1.19.0",
2024-07-15 18:01:56 +00:00
"aws-sdk": "^2.326.0",
2024-07-16 22:07:59 +00:00
"axios": "^1.7.2",
2024-07-15 18:15:26 +00:00
"pjson": "^1.0.9",
2024-07-15 18:08:24 +00:00
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
2024-07-18 03:33:25 +00:00
"typescript": "^5.5.3"
2024-07-15 09:04:29 +00:00
}
}