-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.76 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
{
"name": "covid-vaccine-appointment",
"description": "A web chat widget web component that interacts with a dialogflow interactions api to detect intents",
"version": "0.0.1",
"author": "Emmanuel Asamoah Botwe",
"license": "Apache License",
"homepage": "https://github.com/botchway44/covid-vaccine-appointment#readme",
"repository": {
"type": "git",
"url": "https://github.com/botchway44/covid-vaccine-appointment"
},
"bugs": {
"url": "https://github.com/botchway44/covid-vaccine-appointment/issues"
},
"keywords": [
"chat",
"chat-widget",
"dialogflow",
"dialogflow cx",
"interations-api",
"web-components",
"webcomponents"
],
"scripts": {
"prebuild": "rm -rf dist server",
"build:server": "tsc --build config/tsconfig.server.json",
"build:widget": "rollup -c && tsc --build config/tsconfig.widget.json -d",
"build": "npm run build:server && npm run build:widget",
"serve:widget": "rollup -c --watch --plugin dev",
"serve:static": "harp . --port $PORT",
"start:dev": "nodemon",
"start": "node server/app/app.js",
"build:doc": "wca src/widget/index.ts --outFiles doc/{tagname}.md"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-umd": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^5.0.2",
"@types/express": "^4.17.12",
"@types/google.maps": "^3.45.6",
"@types/googlemaps": "^3.30.8",
"@types/mocha": "^8.2.2",
"@types/mongodb": "^3.6.17",
"@types/node": "^15.6.1",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@types/rollup-plugin-url": "^3.0.1",
"@types/uuid": "^8.3.1",
"focus-visible": "^5.2.0",
"path": "^0.12.7",
"rollup": "^2.53.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-dev": "^1.1.3",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-postcss": "^1.3.3",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.35.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.0",
"tslint": "^6.1.3",
"typescript": "^3.9.10",
"web-component-analyzer": "^1.1.6"
},
"dependencies": {
"@google-cloud/dialogflow-cx": "^2.12.0",
"@googlemaps/js-api-loader": "^1.12.1",
"actions-on-google": "^2.5.0",
"body-parser": "^1.19.0",
"dialogflow": "^0.8.0",
"dialogflow-fulfillment": "^0.6.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"harp": "*",
"mongodb": "^3.1.12",
"nodemailer": "^6.6.3",
"nodemailer-express-handlebars": "^4.0.0",
"pb-util": "^1.0.1"
}
}