This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.69 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
{
"name": "@examples/weather-bot",
"version": "0.0.1",
"description": "Example skill that allows a user to ask about the weather",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:alexa/skill-components.git"
},
"license": "AmznSL-1.0",
"scripts": {
"clean": "rm -rf dist && rm -rf build && rm -rf node_modules",
"compile-ts": "webpack --config webpack.config.js",
"compile-acdl": "askx compile",
"compile": "npm run compile-ts && npm run compile-acdl",
"lint": "eslint --fix --max-warnings 0 -c .eslintrc.js 'src/**/*.{ts,tsx}'",
"test": "jest --testTimeout=10000",
"build": "npm run compile",
"clean-build": "npm run clean && npm install && npm run build",
"release": "npm run build && npm run lint && npm run test",
"clean-release": "npm run clean && npm install && npm run release",
"deploy": "npm run build && askx deploy"
},
"dependencies": {
"@alexa-skill-components/feedback-elicitation": "../../alexa-skill-components-feedback-elicitation-0.0.5.tgz",
"ask-sdk-core": "^2.12.1",
"ask-sdk-model": "^1.38.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@alexa/acdl": "^0.1.13",
"ask-cli-x": "^2.22.4-beta.16",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.181",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-html-reporter": "3.2.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.0",
"ts-mockito": "2.5.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.9.2"
}
}