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

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

96 lines
2.8 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",
2024-01-08 22:51:14 +00:00
"version": "0.20.0",
2022-01-24 07:19:27 +00:00
"description": "Simple book-keeping app for everyone",
"author": {
"name": "Frappe Technologies Pvt. Ltd.",
"email": "hello@frappe.io"
},
2018-02-16 13:14:38 +00:00
"scripts": {
"dev": "node build/scripts/dev.mjs",
"build": "node build/scripts/build.mjs",
"release": "scripts/publish-mac-arm.sh",
2022-05-20 11:12:32 +00:00
"postinstall": "electron-rebuild",
"postuninstall": "electron-rebuild",
"script:translate": "scripts/runner.sh scripts/generateTranslations.ts",
"script:profile": "scripts/profile.sh",
"test": "scripts/test.sh",
2023-06-27 06:12:47 +00:00
"uitest": "node uitest/index.mjs | tap-spec",
"lint": "eslint . --ext ts,vue",
"format": "prettier --write ."
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",
"source-map-support": "^0.5.21",
"vue": "^3.2.40",
2022-02-09 10:31:45 +00:00
"vue-router": "^4.0.12"
},
"devDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
2022-03-25 09:09:52 +00:00
"@types/assert": "^1.5.6",
2023-07-12 09:28:14 +00:00
"@types/better-sqlite3": "^7.6.4",
"@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/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
2022-10-29 09:40:24 +00:00
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^9",
"chokidar": "^3.5.3",
2022-04-25 06:33:31 +00:00
"dotenv": "^16.0.0",
"electron": "18.3.7",
"electron-builder": "^24.4.0",
"electron-devtools-installer": "^3.2.0",
"electron-rebuild": "^3.2.9",
"electron-updater": "^5.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.15.0",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
2023-06-27 06:12:47 +00:00
"playwright": "^1.35.1",
"postcss": "^8",
"prettier": "^2.4.1",
"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",
"vite": "^4.3.9",
"vue-tsc": "^1.6.5",
"yargs": "^17.7.2"
},
2022-01-24 07:19:27 +00:00
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"homepage": "https://frappebooks.com",
"repository": {
"url": "https://github.com/frappe/books"
},
"license": "AGPL-3.0-only"
}