mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "frappe-accounting",
|
|
"description": "Simple Accounting app for everyone",
|
|
"version": "0.0.2",
|
|
"author": {
|
|
"name": "Frappe Technologies Pvt. Ltd.",
|
|
"email": "hello@frappe.io"
|
|
},
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint",
|
|
"electron:build": "vue-cli-service electron:build",
|
|
"electron:serve": "vue-cli-service electron:serve",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"postuninstall": "electron-builder install-app-deps"
|
|
},
|
|
"main": "background.js",
|
|
"dependencies": {
|
|
"core-js": "^3.4.3",
|
|
"deepmerge": "^4.2.2",
|
|
"frappe-charts": "^1.3.0",
|
|
"frappejs": "http://github.com/frappe/frappejs",
|
|
"knex": "^0.20.4",
|
|
"luxon": "^1.21.3",
|
|
"popper.js": "^1.16.0",
|
|
"portal-vue": "^2.1.6",
|
|
"sqlite3": "^4.1.1",
|
|
"tailwindcss": "^1.1.4",
|
|
"vue": "^2.6.10",
|
|
"vue-router": "^3.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-babel": "^4.1.0",
|
|
"@vue/cli-plugin-eslint": "^4.1.0",
|
|
"@vue/cli-plugin-router": "^4.1.0",
|
|
"@vue/cli-service": "^4.1.0",
|
|
"@vue/eslint-config-prettier": "^5.0.0",
|
|
"babel-eslint": "^10.0.3",
|
|
"electron": "^6.0.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"eslint-plugin-vue": "^5.0.0",
|
|
"lint-staged": "^9.4.3",
|
|
"prettier": "^1.19.1",
|
|
"vue-cli-plugin-electron-builder": "^1.4.3",
|
|
"vue-template-compiler": "^2.6.10"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,vue}": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|