Files
vue-cli/packages/@vue/cli-ui/package.json
Guillaume Chau 73545252e0 feat: ui tweaks & fixes (#1409)
* refactor(ui): use fetchPolic: 'cache-and-network' by default

* feat(ui): don't display loader if cached data

* fix(ui): eslint errors

* feat(ui): new top bar design

* fix(ui): remove work icon in top bar

* fix(ui): logger view item hover background

* feat(ui): Projects list show open project

* feat(ui): top bar: responsive + no favorites message

* fix(ui): Cannot set property consoleLogLast of #<a> which has only a getter

* fix(ui): loading prompts folder when installing plugin

* feat(ui): help translating button + docs

* docs(ui): fix local. docs

* fix(ui): Help translate button

* docs(ui): plugin ui dev docs improvements

* docs(ui): typo

* docs(ui): typo

* docs(ui): typo

* feat(ui): auto locale now tries full code + short code

* docs(ui): fix missing ref locale link
2018-05-31 14:10:05 -04:00

100 lines
3.1 KiB
JSON

{
"name": "@vue/cli-ui",
"version": "3.0.0-beta.15",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"graphql-api": "cross-env VUE_CLI_DEBUG=true VUE_CLI_UI_DEV=true vue-cli-service graphql-api",
"run-graphql-api": "vue-cli-service run-graphql-api",
"run-test-graphql-api": "cross-env NODE_ENV=test VUE_APP_GRAPHQL_PORT=4040 VUE_APP_CLI_UI_URL=ws://localhost:4040/graphql yarn run graphql-api",
"prepublishOnly": "yarn run lint --no-fix && yarn run build",
"test:e2e:dev": "cross-env VUE_APP_CLI_UI_URL=ws://localhost:4040/graphql vue-cli-service test:e2e --mode development",
"test:e2e:run": "vue-cli-service test:e2e --mode production --headless --url=http://localhost:4040",
"test:e2e": "start-server-and-test run-test-graphql-api http://localhost:4040 test:e2e:dev",
"test:run": "start-server-and-test run-test-graphql-api http://localhost:4040 test:e2e:run",
"test": "yarn run build && cd ../cli-ui-addon-webpack && yarn run build && cd ../cli-ui && yarn run test:run"
},
"dependencies": {
"@vue/cli-shared-utils": "^3.0.0-beta.15",
"chalk": "^2.4.1",
"clone": "^2.1.1",
"deepmerge": "^2.1.0",
"execa": "^0.10.0",
"express-history-api-fallback": "^2.2.1",
"fs-extra": "^6.0.0",
"globby": "^8.0.1",
"graphql": "^0.13.0",
"graphql-tag": "^2.9.2",
"graphql-type-json": "^0.2.0",
"javascript-stringify": "^1.6.0",
"js-yaml": "^3.11.0",
"launch-editor": "^2.2.1",
"lodash.merge": "^4.6.1",
"lowdb": "^1.0.0",
"lru-cache": "^4.1.2",
"node-ipc": "^9.1.1",
"node-notifier": "^5.2.1",
"portfinder": "^1.0.13",
"semver": "^5.5.0",
"shortid": "^2.2.8",
"terminate": "^2.1.0",
"vue-cli-plugin-apollo": "^0.13.4",
"watch": "^1.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.15",
"@vue/cli-plugin-e2e-cypress": "^3.0.0-beta.15",
"@vue/cli-plugin-eslint": "^3.0.0-beta.15",
"@vue/cli-service": "^3.0.0-beta.15",
"@vue/eslint-config-standard": "^3.0.0-beta.15",
"@vue/ui": "^0.2.5",
"ansi_up": "^2.0.2",
"cross-env": "^5.1.5",
"eslint": "^4.16.0",
"eslint-plugin-graphql": "^2.1.1",
"file-icons-js": "^1.0.3",
"lint-staged": "^6.0.0",
"portal-vue": "^1.3.0",
"start-server-and-test": "^1.4.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue": "^2.5.16",
"vue-apollo": "^3.0.0-beta.16",
"vue-color": "^2.4.6",
"vue-i18n": "^7.6.0",
"vue-instantsearch": "^1.5.1",
"vue-meta": "^1.5.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"xterm": "^3.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "index.js",
"license": "MIT",
"author": "Guillaume Chau",
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}