forked from pallav-8080/Dice-Roll-Skill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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": "volley-skill-starter",
"version": "0.0.1",
"description": "A starter kit for Alexa skills using ask-sdk",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "tsc",
"deploy": "webpack && aws lambda update-function-code --function-name arn:aws:lambda:us-west-2:730947801202:function:pallav-dice-roll-skill-backend --zip-file fileb://dist/index.js.zip",
"clean": "rm -rf dist && rm -rf ts.dist && rm -rf kit.dist",
"upgrade": "ncu -u && npm i",
"zip.self": "./zip.project.sh",
"test": "ts-mocha -p tsconfig.json tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/volley-inc/volley-skill-starter.git"
},
"keywords": [
"template",
"alexa",
"starter",
"skills",
"ask-sdk"
],
"author": "Pallav Soni",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/volley-inc/volley-skill-starter/issues"
},
"homepage": "https://github.com/volley-inc/volley-skill-starter#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^14.14.41",
"alexa-skill-test-framework": "^1.2.4",
"ask-cli": "^2.22.4",
"ask-sdk-model": "^1.35.1",
"chai": "^4.3.7",
"npm-check-updates": "^11.4.1",
"prettier": "^2.2.1",
"ts-loader": "^9.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.259.0",
"ask-sdk": "^2.10.2",
"aws-crt": "^1.15.8"
}
}