2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
3.2 KiB
JSON
Raw Normal View History

2018-01-08 12:29:49 +00:00
{
2020-01-02 17:36:00 +00:00
"name": "frappe-books",
2023-04-11 06:52:23 +00:00
"version": "0.12.0",
2022-01-24 07:19:27 +00:00
"description": "Simple book-keeping app for everyone",
2022-03-21 05:36:50 +00:00
"main": "background.js",
"author": {
"name": "Frappe Technologies Pvt. Ltd.",
"email": "hello@frappe.io"
},
2018-02-16 13:14:38 +00:00
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
2022-05-20 11:12:32 +00:00
"postinstall": "electron-rebuild",
"postuninstall": "electron-rebuild",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
2022-05-20 11:12:32 +00:00
"script:translate": "scripts/runner.sh scripts/generateTranslations.ts",
"script:profile": "scripts/profile.sh",
"test": "scripts/test.sh"
2018-02-16 13:14:38 +00:00
},
2018-01-08 12:29:49 +00:00
"dependencies": {
"@codemirror/autocomplete": "^6.4.2",
2023-03-08 09:01:02 +00:00
"@codemirror/lang-vue": "^0.1.1",
"@popperjs/core": "^2.10.2",
2022-05-20 11:12:32 +00:00
"better-sqlite3": "^7.5.3",
2023-03-08 09:01:02 +00:00
"codemirror": "^6.0.1",
"core-js": "^3.19.0",
"electron-store": "^8.0.1",
"feather-icons": "^4.28.0",
"knex": "^2.4.0",
"lodash": "^4.17.21",
"luxon": "^2.5.2",
2022-02-16 10:05:35 +00:00
"node-fetch": "2",
2022-05-23 05:30:54 +00:00
"pesa": "^1.1.12",
"vue": "^3.2.40",
2022-02-09 10:31:45 +00:00
"vue-router": "^4.0.12"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
2022-03-25 09:09:52 +00:00
"@types/assert": "^1.5.6",
"@types/electron-devtools-installer": "^2.2.0",
2022-03-09 10:46:06 +00:00
"@types/lodash": "^4.14.179",
2022-04-08 06:59:42 +00:00
"@types/luxon": "^2.3.1",
2022-03-25 09:09:52 +00:00
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
2022-10-29 09:40:24 +00:00
"@types/tape": "^4.13.2",
2022-01-24 07:19:27 +00:00
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@vue/cli-plugin-babel": "^4.5.0",
"@vue/cli-plugin-eslint": "^5.0.0-beta.7",
"@vue/cli-plugin-router": "^4.5.0",
2022-01-24 07:19:27 +00:00
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "^4.5.0",
2022-01-24 07:19:27 +00:00
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^9",
"babel-loader": "^8.2.3",
2022-04-25 06:33:31 +00:00
"dotenv": "^16.0.0",
"electron": "18.3.7",
"electron-builder": "24.0.0-alpha.12",
"electron-devtools-installer": "^3.2.0",
"electron-rebuild": "^3.2.9",
"electron-updater": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
2022-01-24 07:19:27 +00:00
"eslint-plugin-vue": "^7.0.0",
"lint-staged": "^11.2.6",
"postcss": "^8",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
2023-01-07 10:25:36 +00:00
"tailwindcss-rtl": "^0.9.0",
2022-10-29 09:40:24 +00:00
"tap-spec": "^5.0.0",
"tape": "^5.6.1",
2022-03-25 09:09:52 +00:00
"ts-node": "^10.7.0",
2022-03-28 10:01:29 +00:00
"tsconfig-paths": "^3.14.1",
"tslib": "^2.3.1",
2022-03-18 09:20:20 +00:00
"typescript": "^4.6.2",
"vue-cli-plugin-electron-builder": "https://github.com/nklayman/vue-cli-plugin-electron-builder#ebb9183f4913f927d4e4f4eb1fbab61a960f7a09",
"webpack": "^5.76.0"
},
"resolutions": {
"electron-builder": "24.0.0-alpha.12"
},
2022-01-24 07:19:27 +00:00
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"engineStrict": true,
2022-01-24 07:19:27 +00:00
"engines": {
2022-04-01 09:54:20 +00:00
"node": ">=16.13.1 <17"
2022-01-24 07:19:27 +00:00
},
"gitHooks": {
"pre-commit": "lint-staged"
},
2022-01-24 07:19:27 +00:00
"homepage": "https://frappebooks.com",
"lint-staged": {
2019-12-16 11:40:59 +00:00
"*.{js,vue}": "vue-cli-service lint"
2021-09-30 09:23:08 +00:00
},
2022-01-24 07:19:27 +00:00
"repository": {
"url": "https://github.com/frappe/books"
}
}