blob: b0519f4214ef8b2e9842122b39ec5d6ca56cd754 [file] [log] [blame]
Derick Montaguea2988f42020-01-17 13:46:30 -06001{
2 "name": "webui-vue",
Derick Montaguea2988f42020-01-17 13:46:30 -06003 "version": "0.1.0",
4 "private": true,
Dixsie Wolmerscbcd2132020-01-30 20:58:37 -06005 "description": "OpenBMC Web UI using the Vue.js front-end framework",
Derick Montaguea2988f42020-01-17 13:46:30 -06006 "scripts": {
Derick Montaguef3ab8bc2019-12-10 15:13:25 -06007 "serve": "vue-cli-service serve",
Derick Montaguea2988f42020-01-17 13:46:30 -06008 "build": "vue-cli-service build",
9 "test:unit": "vue-cli-service test:unit",
Derick Montague365bce52020-01-03 08:36:20 -060010 "lint": "vue-cli-service lint",
11 "docs:serve": "vuepress dev docs",
Dixsie Wolmerscbcd2132020-01-30 20:58:37 -060012 "docs:build": "vuepress build docs",
13 "i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
Derick Montaguea2988f42020-01-17 13:46:30 -060014 },
15 "dependencies": {
16 "@carbon/icons-vue": "10.6.1",
17 "axios": "0.19.0",
18 "bootstrap": "4.3.1",
Yoshie Muranaka5bb956d2020-02-26 12:13:12 -080019 "bootstrap-vue": "2.5.0",
Derick Montaguea2988f42020-01-17 13:46:30 -060020 "core-js": "3.3.2",
Yoshie Muranaka6ce1a072019-12-06 14:13:59 -080021 "js-cookie": "^2.2.1",
Derick Montague365bce52020-01-03 08:36:20 -060022 "vue": "2.6.11",
23 "vue-date-fns": "1.1.0",
Yoshie Muranaka183c2752020-02-12 11:30:49 -080024 "vue-i18n": "8.15.3",
Derick Montaguea2988f42020-01-17 13:46:30 -060025 "vue-router": "3.1.3",
Yoshie Muranaka4b0fc1d2020-01-06 07:36:16 -080026 "vuelidate": "^0.7.4",
Derick Montaguea2988f42020-01-17 13:46:30 -060027 "vuex": "3.0.1"
28 },
29 "devDependencies": {
Dixsie Wolmerscbcd2132020-01-30 20:58:37 -060030 "@kazupon/vue-i18n-loader": "0.3.0",
Derick Montaguea2988f42020-01-17 13:46:30 -060031 "@vue/cli-plugin-babel": "4.0.0",
32 "@vue/cli-plugin-eslint": "4.0.5",
33 "@vue/cli-plugin-router": "4.0.0",
34 "@vue/cli-plugin-unit-jest": "4.0.0",
35 "@vue/cli-plugin-vuex": "4.0.0",
36 "@vue/cli-service": "4.0.0",
37 "@vue/eslint-config-prettier": "5.0.0",
38 "@vue/test-utils": "1.0.0-beta.29",
39 "babel-eslint": "10.0.3",
Derick Montaguef3ab8bc2019-12-10 15:13:25 -060040 "compression-webpack-plugin": "3.0.1",
Derick Montaguea2988f42020-01-17 13:46:30 -060041 "eslint": "5.16.0",
42 "eslint-plugin-prettier": "3.1.1",
43 "eslint-plugin-vue": "5.0.0",
44 "lint-staged": "9.4.2",
45 "node-sass": "4.13.1",
46 "prettier": "1.18.2",
47 "sass-loader": "8.0.0",
Derick Montague365bce52020-01-03 08:36:20 -060048 "vue-template-compiler": "2.6.11",
Dixsie Wolmerscbcd2132020-01-30 20:58:37 -060049 "vuepress": "^1.2.0",
50 "vue-cli-plugin-i18n": "0.6.1"
Derick Montaguea2988f42020-01-17 13:46:30 -060051 },
52 "gitHooks": {
53 "pre-commit": "lint-staged"
54 },
55 "lint-staged": {
56 "*.{js,vue}": [
57 "vue-cli-service lint",
58 "git add"
59 ]
60 }
61}