-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.83 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
{
"name": "jovo-v4-template",
"private": true,
"version": "4.0.0",
"description": "Get started with Jovo Framework v4 using this sample TypeScript app.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"tsc": "tsc",
"start:dev": "tsc-watch --onSuccess \"node ./dist/app.dev.js --jovo-webhook\" --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*",
"prebundle": "rimraf bundle",
"postbundle": "cd bundle && bestzip ../bundle.zip * && cd ..",
"bundle:dev": "npm run bundle -- src/app.dev.ts",
"eslint": "eslint src test --fix --ext .ts"
},
"dependencies": {
"@jovotech/db-filedb": "^4.5.2",
"@jovotech/framework": "^4.5.2",
"@jovotech/plugin-debugger": "^4.5.2",
"@jovotech/server-express": "^4.5.2",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@jovotech/cli-core": "^4.1.9",
"@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": "^29.7.0",
"prettier": "^2.2.1",
"ts-jest": "^29.1.2",
"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"
}