forked from bbonnin/pulsar-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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": "pulsar-express",
"version": "0.5.1",
"description": "Simple Web Interface for Apache Pulsar",
"keywords": [
"apache pulsar",
"pulsar",
"web"
],
"author": "Bruno Bonnin",
"repository": {
"type": "git",
"url": "git+https://github.com/bbonnin/pulsar-express.git"
},
"bugs": {
"url": "https://github.com/bbonnin/pulsar-express/issues"
},
"homepage": "https://github.com/bbonnin/pulsar-express#readme",
"license": "Apache-2.0",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"docker-build": "docker build --build-arg BASE_URL=${PE_BASE_URL} -t pulsar-express .",
"docker-run": "docker run -it -p 3000:3000 -e PE_CONNECTION_URL=http://host.docker.internal:8080 -e PE_BASE_URL=${PE_BASE_URL} pulsar-express"
},
"dependencies": {
"@nuxtjs/axios": "^5.8.0",
"@nuxtjs/proxy": "^1.3.3",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"element-theme-chalk": "^2.11.1",
"element-ui": "^2.11.1",
"http-proxy-middleware": "^2.0.6",
"nuxt": "^2.10.2",
"request": "^2.88.0",
"vue-lodash": "^2.0.2",
"vue-moment": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.1"
},
"bin": {
"pulsar-express": "./pulsar-express.js"
}
}