-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.16 KB
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
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test-ui": "cd tests && npm start",
"test": "cd tests && npm test",
"css-build": "npx node-sass --omit-source-map-url src/assets/custom_dark.scss public/css/dark.css && npx node-sass --omit-source-map-url src/assets/custom.scss public/css/light.css",
"css-minibuild": "npx node-sass --omit-source-map-url src/assets/custom_dark.scss public/css/dark.css && npx node-sass --omit-source-map-url src/assets/custom.scss public/css/light.css && java -jar yuicompressor-2.4.8.jar --type css -o public/css/dark.min.css public/css/dark.css && java -jar yuicompressor-2.4.8.jar --type css -o public/css/light.min.css public/css/light.css"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.17.0",
"@types/jsonwebtoken": "^8.5.1",
"axios": "^0.21.0",
"bootstrap": "^4.5.2",
"bootstrap-icons": "^1.2.1",
"bootstrap-vue": "^2.17.3",
"chart.js": "^3.5.1",
"core-js": "^3.6.5",
"eslint-plugin-graphql": "^4.0.0",
"graphql": "^15.5.1",
"highcharts": "^9.2.2",
"jquery": "^3.5.1",
"js-md5": "^0.7.3",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"module": "^1.2.5",
"moment": "^2.29.1",
"popper.js": "^1.16.1",
"readline": "^1.3.0",
"ts-node-dev": "^1.1.6",
"vue": "^2.6.11",
"vue-apollo": "^3.0.0-beta.11",
"vue-axios": "^3.2.0",
"vue-chartkick": "^0.6.1",
"vue-cli": "^2.9.6",
"vue-gravatar": "^1.4.1",
"vue-pdf": "^4.2.0",
"vue-router": "^3.2.0",
"vuex": "^3.4.0",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"graphql-tag": "^2.9.0",
"sass": "^1.38.1",
"sass-loader": "^7.3.1",
"vue-cli-plugin-apollo": "~0.21.3",
"vue-template-compiler": "^2.6.11"
}
}