|
| 1 | +{ |
| 2 | + "name": "vue-simple-portal", |
| 3 | + "version": "0.1.0", |
| 4 | + "private": true, |
| 5 | + "scripts": { |
| 6 | + "serve": "vue-cli-service serve", |
| 7 | + "build": "vue-cli-service build", |
| 8 | + "lint": "vue-cli-service lint", |
| 9 | + "test:e2e": "vue-cli-service test:e2e", |
| 10 | + "test:unit": "vue-cli-service test:unit" |
| 11 | + }, |
| 12 | + "dependencies": { |
| 13 | + "vue": "^2.6.6" |
| 14 | + }, |
| 15 | + "devDependencies": { |
| 16 | + "@vue/cli-plugin-babel": "^3.4.0", |
| 17 | + "@vue/cli-plugin-e2e-cypress": "^3.4.0", |
| 18 | + "@vue/cli-plugin-eslint": "^3.4.0", |
| 19 | + "@vue/cli-plugin-unit-jest": "^3.4.0", |
| 20 | + "@vue/cli-service": "^3.4.0", |
| 21 | + "@vue/eslint-config-prettier": "^4.0.1", |
| 22 | + "@vue/test-utils": "^1.0.0-beta.20", |
| 23 | + "babel-core": "7.0.0-bridge.0", |
| 24 | + "babel-eslint": "^10.0.1", |
| 25 | + "babel-jest": "^23.6.0", |
| 26 | + "eslint": "^5.8.0", |
| 27 | + "eslint-plugin-vue": "^5.0.0", |
| 28 | + "lint-staged": "^8.1.0", |
| 29 | + "vue-template-compiler": "^2.5.21" |
| 30 | + }, |
| 31 | + "gitHooks": { |
| 32 | + "pre-commit": "lint-staged" |
| 33 | + }, |
| 34 | + "lint-staged": { |
| 35 | + "*.js": [ |
| 36 | + "vue-cli-service lint", |
| 37 | + "git add" |
| 38 | + ], |
| 39 | + "*.vue": [ |
| 40 | + "vue-cli-service lint", |
| 41 | + "git add" |
| 42 | + ] |
| 43 | + } |
| 44 | +} |
0 commit comments