Browse Source

Add influx

main
Haris Razis 4 years ago
parent
commit
840b64cf25
No known key found for this signature in database GPG Key ID: 86A4D290ED03FAB4
  1. 14
      web/package-lock.json
  2. 3
      web/package.json
  3. 1
      web/src/main.ts

14
web/package-lock.json

@ -1,12 +1,14 @@
{ {
"name": "web", "name": "Anchiale-web",
"version": "0.1.0", "version": "0.1.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "Anchiale-web",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@influxdata/influxdb-client": "^1.8.0",
"bulma": "^0.9.1", "bulma": "^0.9.1",
"vue": "^3.0.0", "vue": "^3.0.0",
"vue-class-component": "^8.0.0-0" "vue-class-component": "^8.0.0-0"
@ -161,6 +163,11 @@
"@hapi/hoek": "^8.3.0" "@hapi/hoek": "^8.3.0"
} }
}, },
"node_modules/@influxdata/influxdb-client": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@influxdata/influxdb-client/-/influxdb-client-1.8.0.tgz",
"integrity": "sha512-fygvCHBUrcuduMRZf1oGhQzvIJG6gEA+0JX4ffxq5cxAeHKUGCYt30GafBc23QyrnCc50zc0IsPSG2Tw47aw+w=="
},
"node_modules/@intervolga/optimize-cssnano-plugin": { "node_modules/@intervolga/optimize-cssnano-plugin": {
"version": "1.0.6", "version": "1.0.6",
"resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz", "resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz",
@ -14610,6 +14617,11 @@
"@hapi/hoek": "^8.3.0" "@hapi/hoek": "^8.3.0"
} }
}, },
"@influxdata/influxdb-client": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@influxdata/influxdb-client/-/influxdb-client-1.8.0.tgz",
"integrity": "sha512-fygvCHBUrcuduMRZf1oGhQzvIJG6gEA+0JX4ffxq5cxAeHKUGCYt30GafBc23QyrnCc50zc0IsPSG2Tw47aw+w=="
},
"@intervolga/optimize-cssnano-plugin": { "@intervolga/optimize-cssnano-plugin": {
"version": "1.0.6", "version": "1.0.6",
"resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz", "resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz",

3
web/package.json

@ -1,5 +1,5 @@
{ {
"name": "web", "name": "Anchiale-web",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
@ -8,6 +8,7 @@
"lint": "vue-cli-service lint" "lint": "vue-cli-service lint"
}, },
"dependencies": { "dependencies": {
"@influxdata/influxdb-client": "^1.8.0",
"bulma": "^0.9.1", "bulma": "^0.9.1",
"vue": "^3.0.0", "vue": "^3.0.0",
"vue-class-component": "^8.0.0-0" "vue-class-component": "^8.0.0-0"

1
web/src/main.ts

@ -1,3 +1,4 @@
/* eslint-disable */
import { createApp } from 'vue'; import { createApp } from 'vue';
import App from './App.vue'; import App from './App.vue';

Loading…
Cancel
Save