package.json
{
"name": "buddhanexus",
"version": "1.0.0",
"description": "This is a pali segmentation parallels app.",
"main": "index.js",
"scripts": {
"webpack": "webpack serve --history-api-fallback",
"build": "webpack --config build-utils/webpack.production.js",
"dev": "webpack serve -- --config build-utils/webpack.development.js",
"lint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuddhaNexus/buddhanexus-frontend"
},
"keywords": [],
"author": "Ayya Vimala <ayya.vimala@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BuddhaNexus/buddhanexus-frontend/issues"
},
"homepage": "https://github.com/BuddhaNexus/buddhanexus-frontend",
"dependencies": {
"@polymer/paper-input": "^3.2.1",
"@polymer/paper-slider": "https://github.com/BuddhaNexus/paper-slider.git",
"@polymer/paper-toggle-button": "^3.0.1",
"@vaadin/router": "^1.7.2",
"@vaadin/vaadin-app-layout": "^2.0.4",
"@vaadin/vaadin-button": "^2.2.2",
"@vaadin/vaadin-checkbox": "^2.2.12",
"@vaadin/vaadin-combo-box": "^5.0.10",
"@vaadin/vaadin-details": "^1.0.1",
"@vaadin/vaadin-dialog": "^2.2.1",
"@vaadin/vaadin-icons": "^4.3.1",
"@vaadin/vaadin-item": "^2.2.0",
"@vaadin/vaadin-menu-bar": "^1.1.0",
"@vaadin/vaadin-radio-button": "^1.3.0",
"@vaadin/vaadin-select": "^2.1.7",
"@vaadin/vaadin-split-layout": "^4.2.0",
"@vaadin/vaadin-tabs": "^3.1.0",
"@webcomponents/webcomponentsjs": "^2.4.3",
"core-js": "^3.15.2",
"default-passive-events": "^1.0.10",
"lit-element": "^2.3.1",
"multiselect-combo-box": "^2.4.2",
"normalize.css": "^8.0.1",
"qs": "^6.9.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@google-web-components/google-chart": "^3.4.0",
"@webpack-cli/serve": "^1.5.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"dotenv-webpack": "^7.0.3",
"eslint": "^6.8.0",
"eslint-plugin-lit": "^1.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "^1.19.1",
"style-loader": "^3.0.0",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.43.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
}
}