blob: 0ca430739e4939b537e50f824caa634f9bfb3fdb [file] [log] [blame]
Derick Montaguea2988f42020-01-17 13:46:30 -06001{
Patrick Williams7385e132022-12-08 06:13:13 -06002 "name": "webui-vue",
3 "version": "0.1.0",
4 "private": true,
5 "description": "OpenBMC Web UI using the Vue.js front-end framework",
6 "scripts": {
Ed Tanous7d6b44c2024-03-23 14:56:34 -07007 "serve": "check-node-version --package && vue-cli-service serve --mode development",
Patrick Williams7385e132022-12-08 06:13:13 -06008 "build": "check-node-version --package && vue-cli-service build",
9 "test:unit": "vue-cli-service test:unit",
10 "test:unit:debugger": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand",
11 "test:update": "vue-cli-service test:unit -u",
12 "lint": "vue-cli-service lint",
13 "docs:build": "vuepress build docs",
14 "docs:serve": "vuepress dev docs",
15 "i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
16 },
17 "dependencies": {
Ed Tanous7d6b44c2024-03-23 14:56:34 -070018 "@carbon/icons-vue": "10.49.1",
19 "@novnc/novnc": "1.3.0",
Ed Tanous883a0d52024-03-23 14:56:34 -070020 "@vue/compat": "3.4.29",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070021 "@vue/vue3-jest": "27.0.0",
22 "@vuelidate/core": "2.0.3",
23 "@vuelidate/validators": "2.0.4",
Nikhil Ashoka129aecd2024-03-27 16:00:49 +053024 "axios": "1.6.0",
Ed Tanous01492c32024-04-20 16:34:54 -070025 "axios-cache-interceptor": "1.5.1",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070026 "bootstrap": "4.6.2",
27 "bootstrap-vue": "2.23.1",
28 "core-js": "3.23.4",
29 "date-fns": "2.28.0",
30 "date-fns-tz": "1.3.6",
31 "js-cookie": "3.0.1",
Patrick Williams7385e132022-12-08 06:13:13 -060032 "lodash": "4.17.21",
Ed Tanous883a0d52024-03-23 14:56:34 -070033 "vue": "3.4.29",
Glukhov Mikhail753c4102025-01-13 10:12:12 +030034 "vue-i18n": "10.0.5",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070035 "vue-loader": "17.4.2",
Ed Tanous883a0d52024-03-23 14:56:34 -070036 "vue-router": "4.4.0",
Nikhil Ashoka47bf8552024-06-11 12:19:11 +053037 "vuelidate": "0.7.7",
Ed Tanous883a0d52024-03-23 14:56:34 -070038 "vuex": "4.1.0",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070039 "webpack-cli": "5.1.4",
40 "xterm": "4.19.0",
Patrick Williams7385e132022-12-08 06:13:13 -060041 "xterm-addon-attach": "0.6.0",
42 "xterm-addon-fit": "0.5.0"
43 },
44 "devDependencies": {
Ed Tanous7d6b44c2024-03-23 14:56:34 -070045 "@vue/cli-plugin-babel": "5.0.8",
Ed Tanousa0c29202024-02-27 10:12:25 -080046 "@vue/cli-plugin-eslint": "5.0.8",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070047 "@vue/cli-plugin-router": "5.0.8",
48 "@vue/cli-plugin-unit-jest": "5.0.8",
49 "@vue/cli-plugin-vuex": "5.0.8",
50 "@vue/cli-service": "5.0.8",
51 "@vue/compiler-sfc": "3.4.21",
Ed Tanousa0c29202024-02-27 10:12:25 -080052 "@vue/eslint-config-prettier": "9.0.0",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070053 "@vue/test-utils": "2.4.5",
54 "autoprefixer": "9.8.6",
Patrick Williams7385e132022-12-08 06:13:13 -060055 "babel-plugin-transform-require-context": "0.1.1",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070056 "check-node-version": "4.2.1",
57 "compression-webpack-plugin": "10.0.0",
58 "css-loader": "7.1.1",
59 "eslint": "8.19.0",
Ed Tanousa0c29202024-02-27 10:12:25 -080060 "eslint-plugin-prettier": "5.1.3",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070061 "eslint-plugin-vue": "9.2.0",
62 "eslint-scope": "7.1.1",
63 "lint-staged": "13.0.3",
64 "postcss-loader": "8.1.1",
Ed Tanousa0c29202024-02-27 10:12:25 -080065 "prettier": "3.2.5",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070066 "sass": "1.75.0",
67 "sass-loader": "14.2.1",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070068 "vue-style-loader": "4.1.3",
Ed Tanousf8207742024-04-08 14:27:07 -070069 "vue-svg-inline-loader": "2.1.5",
Ed Tanous7d6b44c2024-03-23 14:56:34 -070070 "vuepress": "1.9.7"
Patrick Williams7385e132022-12-08 06:13:13 -060071 },
72 "engines": {
73 "node": ">=12.14.1"
74 },
75 "gitHooks": {
76 "pre-commit": "lint-staged && vue-cli-service test:unit"
77 },
78 "lint-staged": {
79 "*.{js,vue}": [
80 "vue-cli-service lint",
81 "git add"
82 ]
83 }
Derick Montaguea2988f42020-01-17 13:46:30 -060084}