-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "mymicds-alexa-skill",
"version": "1.0.0",
"description": "Alexa skill for MyMICDS",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:lambda": "npm run build && zip -r lambda.zip dist node_modules",
"build:watch": "tsc -w",
"clean": "rimraf dist",
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyMICDS/MyMICDS-Alexa-Skill"
},
"author": {
"name": "Nick Clifford",
"email": "[email protected]",
"url": "https://nickclifford.me/"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,sass,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@mymicds/configs": "^1.1.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.4",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@mymicds/sdk": "^1.8.0",
"ask-sdk-core": "^2.7.0",
"ask-sdk-model": "^1.19.0"
}
}