-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.97 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-js",
"private": true,
"description": "Get started with Jovo Framework v4 using this sample JavaScript app.",
"scripts": {
"build": "babel src --out-dir dist --copy-files",
"start": "node dist/app.dev.js --jovo-webhook",
"start:dev": "nodemon --watch src --exec \"babel src --out-dir dist --copy-files && node dist/app.dev.js --jovo-webhook\"",
"bundle:dev": "npm run bundle -- dist/app.dev.js",
"prebundle": "rimraf bundle && babel src --out-dir dist --copy-files",
"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*",
"postbundle": "cd bundle && bestzip ../bundle.zip * && cd ..",
"eslint": "eslint src test --fix",
"test": "jest -c jest.config.js"
},
"author": "jovotech",
"license": "Apache-2.0",
"dependencies": {
"@jovotech/db-filedb": "^4.0.0",
"@jovotech/framework": "^4.0.0",
"@jovotech/plugin-debugger": "^4.0.0",
"@jovotech/server-express": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@jovotech/cli-core": "^4.0.0",
"babel-jest": "^27.0.6",
"bestzip": "^2.2.0",
"esbuild": "^0.14.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.10",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jovotech/jovo-framework.git"
},
"bugs": {
"url": "https://github.com/jovotech/jovo-framework"
},
"homepage": "https://github.com/jovotech/jovo-v4-template-js/issues#readme"
}