-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.91 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
{
"name": "essence-helper-google-action",
"version": "0.0.0",
"private": true,
"description": "A Google Action that provides information about the Zenith VR MMORPG.",
"engines": {
"node": "14"
},
"scripts": {
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts . --fix",
"build": "npm run build --prefix functions/ActionsOnGoogleFulfillment",
"serve": "npm run build && firebase serve --project essence-helper ",
"deploy": "npm run build && firebase --project essence-helper deploy --only functions",
"push": "gactions push",
"pull": "gactions pull -f --clean",
"preview": "gactions deploy preview",
"push-and-preview": "npm run push && npm run preview",
"enable-activity-controls": "env GOOGLE_APPLICATION_CREDENTIALS=$PWD/service_account.json web-and-app-activity-controls",
"test": "npm run lint && env GOOGLE_APPLICATION_CREDENTIALS=$PWD/service_account.json mocha --recursive --require ts-node/register test/test.ts",
"logs": "firebase functions:log",
"tunnel": "ngrok http 8000",
"set:webhook:dev": "ts-node scripts/updateWebhookUrlToDevelopment.ts && npm run push",
"set:webhook:prod": "ts-node scripts/updateWebhookUrlToProduction.ts && npm run push",
"dev": "npm run set:webhook:dev && export IS_LOCAL_DEV=true && npm run dev --prefix functions/ActionsOnGoogleFulfillment",
"prod": "npm run set:webhook:prod && npm run deploy"
},
"devDependencies": {
"@assistant/conversation-testing": "^1.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"ngrok": "^4.3.0",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.26.0",
"js-yaml": "^4.1.0"
}
}