-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.87 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "food-recall",
"version": "0.0.1",
"description": "food-recall",
"license": "MIT",
"repository": "https://github.com/hc-sc/sfe-voice",
"author": {
"name": "Daniel McCrady",
"email": "dan.mccrady@focisolutions.com",
"url": "https://focisolutions.com/"
},
"contributors": [
{
"name": "Paul Coyte",
"email": "paul.coyte@canada.ca",
"url": "https://www.canada.ca/en/health-canada.html"
}
],
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "node lib/app/server.js",
"clean": "rimraf lib && rimraf coverage",
"cpystatic": "mkdir ./lib/app/static && rsync -r ./src/app/static/ ./lib/app/static",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"test": "jest",
"posttest": "jest --coverage",
"predev": "npm run clean && npm run lint && npm run test && echo Using TypeScript && tsc --version",
"dev": "tsc --pretty -p tsconfig.json && npm run cpystatic",
"build": "tsc -p tsconfig.json && npm run cpystatic",
"prewatch": "npm run dev",
"watch": "nodemon lib/app/server.js",
"watch:test": "jest --watch",
"predocker": "docker-compose down && docker-compose rm",
"predocker:fresh": "npm run predocker",
"docker": "docker-compose build",
"docker:fresh": "docker-compose build --no-cache",
"postdocker": "docker-compose up -d",
"postdocker:fresh": "docker-compose up -d --force-recreate"
},
"dependencies": {
"@types/express": "^4.16.0",
"@types/helmet": "0.0.45",
"@types/node": "^8.0.0",
"actions-on-google": "^2.12.0",
"ask-sdk": "^2.2.0",
"ask-sdk-core": "^2.2.0",
"ask-sdk-model": "^1.8.0",
"body-parser": "^1.19.0",
"express": "^4.16.3",
"helmet": "^3.21.2",
"moment": "^2.22.2",
"ssml": "0.0.4",
"typed-rest-client": "^1.5.0",
"typescript": "^3.6.3",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/yargs": "^12.0.1",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^3.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
".vscode/*",
"tests/*",
"AssistantModels/*"
],
"watch": [
"src/"
],
"ext": "html, css, js, ts",
"delay": "5",
"events": {
"restart": "tsc --pretty && rsync -r ./src/app/static/ ./lib/app/static"
}
}
}