-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "hello-world",
"version": "1.0.0",
"description": "A template for building custom alexa skills with Typescript and parcel.",
"main": "src/index.ts",
"scripts": {
"start": "parcel watch src/index.ts --target node",
"test": "jest",
"build": "NODE_ENV=production parcel build src/index.ts --target node --bundle-node-modules",
"lint": "eslint . --ext .ts",
"validate": "ask validate -l en-US",
"predeploy": "npm run lint && npm run build && npm run test && npm run validate",
"deploy": "ask deploy"
},
"author": "Smeech",
"license": "ISC",
"dependencies": {
"ask-sdk-core": "^2.7.0",
"ask-sdk-dynamodb-persistence-adapter": "^2.7.0",
"ask-sdk-model": "^1.18.0",
"i18next": "^17.0.11"
},
"lint-staged": {
"*.{ts,js}": [
"npm run lint --",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test --"
}
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"ask-cli": "^1.7.10",
"eslint": "^6.1.0",
"husky": "^3.0.3",
"jest": "^24.9.0",
"lint-staged": "^9.2.1",
"parcel-bundler": "^1.12.3",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"virtual-alexa": "^0.7.2"
}
}