1{ 2 "name": "winscope", 3 "description": "A window manager analysis tool", 4 "version": "0.0.1", 5 "author": "Adrian Roos <roosa@google.com>", 6 "private": true, 7 "scripts": { 8 "dev": "cross-env NODE_ENV=development webpack serve --open --hot", 9 "build": "cross-env NODE_ENV=production webpack --progress", 10 "test": "webpack --config webpack.spec.config.js && jasmine dist/bundleSpec.js" 11 }, 12 "dependencies": { 13 "cross-env": "^7.0.3", 14 "jszip": "^3.6.0", 15 "kotlin": "^1.5.21", 16 "lodash.clonedeep": "^4.5.0", 17 "ts-loader": "^8.3.0", 18 "typescript": "^4.3.5", 19 "vue": "^2.6.14", 20 "vue-context": "^6.0.0", 21 "vue-gtag": "^1.16.1", 22 "vue-material": "^1.0.0-beta-15", 23 "vuex": "^3.6.2" 24 }, 25 "devDependencies": { 26 "@babel/core": "^7.14.6", 27 "@babel/polyfill": "^7.12.1", 28 "@babel/preset-env": "^7.14.7", 29 "@babel/register": "^7.14.5", 30 "@jetbrains/kotlin-webpack-plugin": "^3.0.2", 31 "@testing-library/vue": "^5.8.1", 32 "@types/lodash": "^4.14.171", 33 "babel-loader": "^8.2.2", 34 "compression-webpack-plugin": "^6.1.1", 35 "cross-env": "^7.0.3", 36 "css-loader": "^5.2.7", 37 "eslint": "^7.30.0", 38 "eslint-config-google": "^0.14.0", 39 "eslint-plugin-vue": "^7.13.0", 40 "file-loader": "^6.2.0", 41 "friendly-errors-webpack-plugin": "^1.7.0", 42 "html-webpack-inline-source-plugin": "^1.0.0-beta.2", 43 "html-webpack-plugin": "4.5.2", 44 "husky": "^7.0.0", 45 "jasmine": "^3.8.0", 46 "lint-staged": "^11.0.1", 47 "loader-utils": "^2.0.0", 48 "mini-css-extract-plugin": "^1.6.2", 49 "optimize-css-assets-webpack-plugin": "^5.0.3", 50 "protobufjs": "^6.11.2", 51 "source-map-loader": "^1.1.3", 52 "style-loader": "^2.0.0", 53 "ts-loader": "^8.3.0", 54 "typescript": "^4.3.5", 55 "uglifyjs-webpack-plugin": "^2.2.0", 56 "vue-loader": "^15.9.2", 57 "vue-style-loader": "^4.1.3", 58 "vue-template-compiler": "^2.6.14", 59 "webpack": "^4.46.0", 60 "webpack-cli": "^4.7.2", 61 "webpack-dev-server": "^3.11.2", 62 "webpack-merge": "^5.8.0" 63 }, 64 "husky": { 65 "hooks": { 66 "pre-commit": "lint-staged" 67 } 68 }, 69 "lint-staged": { 70 "*.{js,vue}": "eslint --cache --fix" 71 } 72} 73