mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-20 06:09:56 -06:00
89 lines
2.3 KiB
JSON
89 lines
2.3 KiB
JSON
{
|
|
"name": "@vue/cli-ui",
|
|
"version": "3.0.0-beta.9",
|
|
"author": "Guillaume Chau",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint",
|
|
"graphql-api": "vue-cli-service graphql-api",
|
|
"run-graphql-api": "vue-cli-service run-graphql-api",
|
|
"prod-graphql-api": "cross-env NODE_ENV=production vue-cli-service run-graphql-api",
|
|
"prepublishOnly": "yarn run lint --no-fix && yarn run build"
|
|
},
|
|
"dependencies": {
|
|
"@vue/ui": "^0.2.5",
|
|
"ansi_up": "^2.0.2",
|
|
"apollo-cache-inmemory": "^1.1.10",
|
|
"apollo-client": "^2.2.6",
|
|
"apollo-link": "^1.2.1",
|
|
"apollo-link-http": "^1.5.3",
|
|
"apollo-link-state": "^0.4.0",
|
|
"apollo-link-ws": "^1.0.0",
|
|
"apollo-utilities": "^1.0.9",
|
|
"clone": "^1.0.4",
|
|
"deepmerge": "^2.0.1",
|
|
"express-history-api-fallback": "^2.2.1",
|
|
"file-icons-js": "^1.0.3",
|
|
"graphql": "^0.13.0",
|
|
"graphql-tag": "^2.5.0",
|
|
"graphql-type-json": "^0.2.0",
|
|
"js-yaml": "^3.11.0",
|
|
"lodash.merge": "^4.6.1",
|
|
"lowdb": "^1.0.0",
|
|
"lru-cache": "^4.1.2",
|
|
"mkdirp": "^0.5.1",
|
|
"node-notifier": "^5.2.1",
|
|
"rimraf": "^2.6.2",
|
|
"semver": "^5.5.0",
|
|
"shortid": "^2.2.8",
|
|
"subscriptions-transport-ws": "^0.9.5",
|
|
"terminate": "^2.1.0",
|
|
"vue": "^2.5.16",
|
|
"vue-apollo": "^3.0.0-beta.5",
|
|
"vue-cli-plugin-apollo": "^0.7.8",
|
|
"vue-i18n": "^7.6.0",
|
|
"vue-instantsearch": "^1.5.1",
|
|
"vue-meta": "^1.5.0",
|
|
"vue-router": "^3.0.1",
|
|
"xterm": "^3.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-babel": "^3.0.0-beta.9",
|
|
"@vue/cli-plugin-eslint": "^3.0.0-beta.9",
|
|
"@vue/cli-service": "^3.0.0-beta.9",
|
|
"@vue/eslint-config-standard": "^3.0.0-beta.9",
|
|
"eslint": "^4.16.0",
|
|
"lint-staged": "^6.0.0",
|
|
"stylus": "^0.54.5",
|
|
"stylus-loader": "^3.0.1",
|
|
"vue-template-compiler": "^2.5.16"
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not ie <= 8"
|
|
],
|
|
"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"
|
|
]
|
|
}
|
|
}
|