UNPKG

@controlla/cli

Version:

Command line interface for rapid Controlla projects development

76 lines (75 loc) 2.2 kB
{ "name": "{{ name }}", "description": "{{ description }}", "author": "{{ author }}", "version": "0.1.0", "private": true, "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint --fixed", "electron:build": "vue-cli-service electron:build", "electron:serve": "vue-cli-service electron:serve", "postinstall": "electron-builder install-app-deps", "postuninstall": "electron-builder install-app-deps", "release": "npm run electron:build && standard-version && git push --follow-tags", "test:e2e": "vue-cli-service test:e2e", "test:unit": "vue-cli-service test:unit" }, "dependencies": { "axios": "^0.18.0", "case": "^1.6.1", "core-js": "^2.6.5", "vue": "^2.6.10", "vue-axios": "^2.1.4", "vue-i18n": "^8.11.1", "vue-localstorage": "^0.6.2", "vue-progressbar": "^0.7.5", "vue-router": "^3.0.3", "vuemerang": "^1.4.6", "vuex": "^3.1.1", "vuex-i18n": "^1.11.0" }, "devDependencies": { "@commitlint/cli": "^7.6.1", "@commitlint/config-conventional": "^7.6.0", "@vue/cli-plugin-babel": "^3.6.0", "@vue/cli-plugin-e2e-nightwatch": "^3.6.0", "@vue/cli-plugin-eslint": "^3.6.0", "@vue/cli-plugin-unit-jest": "^3.6.0", "@vue/cli-service": "^3.6.0", "@vue/eslint-config-standard": "^4.0.0", "@vue/test-utils": "1.0.0-beta.29", "babel-core": "7.0.0-bridge.0", "babel-eslint": "^10.0.1", "babel-jest": "^23.6.0", "chromedriver": "^74.0.0", "electron": "^4.0.0", "eslint": "^5.16.0", "eslint-plugin-vue": "^5.0.0", "husky": "^2.2.0", "lint-staged": "^8.1.5", "standard-version": "^6.0.1", "stylus": "^0.54.5", "stylus-loader": "^3.0.2", "vue-cli-plugin-electron-builder": "^1.3.0", "vue-cli-plugin-pug": "^1.0.7", "vue-template-compiler": "^2.5.21" }, "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.{js,vue}": [ "vue-cli-service lint", "git add" ] }, "husky": { "hooks": { "pre-commit": "npm run lint", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "main": "background.js" }