-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 4.05 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
{
"name": "essence-helper-jovo",
"private": true,
"version": "4.0.0",
"description": "A voice app for Alexa and Google that retrieves information about ZenithVR MMORPG",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest test/app/app.test.ts",
"tsc": "tsc",
"start:dev": "tsc-watch --onSuccess \"node ./dist/app.dev.js --jovo-webhook\" --noClear",
"start:prod": "tsc-watch --onSuccess \"ts-node src/app.prod.ts\" --noClear",
"bundle": "esbuild --bundle --outfile=bundle/index.js --sourcemap --minify --keep-names --platform=node --target=node14 --format=cjs --external:aws-sdk --external:@oclif/* --external:@jovotech/cli* --external:@alexa/*",
"prebundle": "rimraf bundle",
"postbundle": "cd bundle && bestzip ../bundle.zip * && cd ..",
"bundle:dev": "npm run bundle -- src/app.dev.ts",
"bundle:prod": "npm run bundle -- src/app.prod.ts",
"eslint": "eslint src test --fix --ext .ts,.ts",
"get:alexa:dev": "jovo get:platform alexa --clean --stage dev",
"get:alexa:prod": "jovo get:platform alexa --clean --stage prod",
"get:google:dev": "jovo get:platform googleAssistant --clean --stage dev",
"get:google:prod": "jovo get:platform googleAssistant --clean --stage prod",
"build:alexa:dev": "jovo build:platform alexa --stage dev",
"build:alexa:prod": "jovo build:platform alexa --stage prod",
"build:google:dev": "jovo build:platform googleAssistant --stage dev",
"build:google:prod": "jovo build:platform googleAssistant --stage prod",
"deploy:alexa:dev": "npm run get:alexa:prod && npm run build:alexa:prod && jovo deploy:platform alexa --stage dev",
"deploy:alexa:prod": "npm run get:alexa:prod && npm run build:alexa:prod && jovo deploy:platform alexa --stage prod",
"deploy:google:dev": "npm run get:google:dev && npm run build:google:dev && jovo deploy:platform googleAssistant --stage dev",
"deploy:google:prod": "npm run get:google:prod && npm run build:google:prod && jovo deploy:platform googleAssistant --stage prod",
"deploy:code": "jovo deploy:code serverless --stage prod",
"test:alexa": "./scripts/alexa-dialogs.sh",
"enable-activity-controls": "env GOOGLE_APPLICATION_CREDENTIALS=$PWD/service_account.json web-and-app-activity-controls",
"test:google": "env GOOGLE_APPLICATION_CREDENTIALS=$PWD/service_account.json jest test/google/google.test.ts",
"test:google:norewrite": "env GOOGLE_APPLICATION_CREDENTIALS=$PWD/service_account.json NO_DRAFT_REWRITE=true jest test/google/google.test.ts"
},
"dependencies": {
"@jovotech/db-filedb": "^4.0.0",
"@jovotech/framework": "^4.0.0",
"@jovotech/platform-alexa": "^4.2.3",
"@jovotech/platform-googleassistant": "^4.2.3",
"@jovotech/plugin-debugger": "^4.0.0",
"@jovotech/server-express": "^4.0.0",
"@jovotech/server-lambda": "4.2.3",
"@jovotech/target-serverless": "^4.1.3",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@assistant/conversation-testing": "^1.0.0",
"@jovotech/cli-command-build": "^4.1.3",
"@jovotech/cli-command-deploy": "^4.1.3",
"@jovotech/cli-command-get": "^4.1.3",
"@jovotech/cli-command-new": "^4.1.3",
"@jovotech/cli-command-run": "^4.1.4",
"@jovotech/cli-core": "^4.0.0",
"@jovotech/filebuilder": "^0.0.1",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.2",
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"bestzip": "^2.1.7",
"esbuild": "^0.14.2",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jovotech/jovo-sample-voice-app-nodejs.git"
},
"author": "jovotech",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jovotech/jovo-v4-template/issues"
},
"homepage": "https://github.com/jovotech/jovo-v4-template#readme"
}