forked from Xzya/alexa-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.4 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": "alexa-typescript-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run test:coverage && gulp",
"deploy": "npm run build && ask deploy",
"deploy:lambda": "npm run build && ask deploy --target lambda",
"deploy:local": "ask deploy --target skill --profile local",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "nodemon"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/*.spec.ts"
],
"coverageDirectory": ".coverage"
},
"author": "Mihail Cristian Dumitru",
"license": "MIT",
"dependencies": {
"ask-sdk-core": "^2.0.7",
"ask-sdk-model": "^1.3.1",
"i18next": "^11.3.5",
"i18next-sprintf-postprocessor": "^0.2.2"
},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/express": "^4.16.0",
"@types/i18next": "^8.4.3",
"@types/i18next-sprintf-postprocessor": "^0.0.29",
"@types/jest": "^23.3.0",
"express": "^4.16.3",
"gulp": "^4.0.0",
"gulp-typescript": "^4.0.1",
"rimraf": "^2.6.2",
"ts-node": "^5.0.1",
"typescript": "^2.9.2",
"nodemon": "^1.17.5",
"jest": "^23.6.0",
"ts-jest": "^23.0.1"
}
}