You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
72 lines
2.1 KiB
{
|
|
"name": "winscope",
|
|
"description": "A window manager analysis tool",
|
|
"version": "0.0.1",
|
|
"author": "Adrian Roos <roosa@google.com>",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
|
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
|
"test": "webpack --config webpack.spec.config.js && jasmine dist/bundleSpec.js"
|
|
},
|
|
"dependencies": {
|
|
"cross-env": "^7.0.2",
|
|
"jszip": "^3.5.0",
|
|
"kotlin": "^1.3.72",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"ts-loader": "^8.0.3",
|
|
"typescript": "^4.0.2",
|
|
"vue": "^2.3.3",
|
|
"vue-context": "^5.2.0",
|
|
"vue-material": "^1.0.0-beta-11",
|
|
"vuex": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.10.5",
|
|
"@babel/polyfill": "^7.10.4",
|
|
"@babel/preset-env": "^7.10.4",
|
|
"@babel/register": "^7.10.5",
|
|
"@jetbrains/kotlin-webpack-plugin": "^3.0.2",
|
|
"@testing-library/vue": "^5.1.0",
|
|
"@types/lodash": "^4.14.158",
|
|
"babel-loader": "^8.1.0",
|
|
"compression-webpack-plugin": "^4.0.0",
|
|
"cross-env": "^7.0.2",
|
|
"css-loader": "^3.6.0",
|
|
"eslint": "^7.1.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-vue": "^6.2.2",
|
|
"file-loader": "^6.0.0",
|
|
"friendly-errors-webpack-plugin": "^1.7.0",
|
|
"html-webpack-inline-source-plugin": "^0.0.10",
|
|
"html-webpack-plugin": "3.2.0",
|
|
"husky": "^4.2.5",
|
|
"jasmine": "^3.5.0",
|
|
"lint-staged": ">=10",
|
|
"loader-utils": "^2.0.0",
|
|
"mini-css-extract-plugin": "^0.9.0",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
|
"protobufjs": "^6.10.0",
|
|
"source-map-loader": "^1.0.1",
|
|
"style-loader": "^1.2.1",
|
|
"ts-loader": "^8.0.1",
|
|
"typescript": "^3.9.7",
|
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
"vue-loader": "^15.9.3",
|
|
"vue-style-loader": "^4.1.2",
|
|
"vue-template-compiler": "^2.6.11",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-merge": "^5.0.9"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,vue}": "eslint --cache --fix"
|
|
}
|
|
}
|