-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "money",
"version": "0.29.1",
"description": "",
"author": "Paul Tirk",
"license": "AGPL-3.0-or-later",
"scripts": {
"check": "vue-tsc --noEmit",
"check:format": "npx prettier -c .",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "node build/build.mjs",
"dev": "VITE_MODE=development node build/build.mjs",
"sign": "dotenv node build/sign.js",
"copy": "rm -rf build/dist && mkdir build/dist && cp -R appinfo img js l10n lib templates *.md build/dist",
"package": "tar c -z -f money.tar.gz --transform \"flags=r;s|^build/dist/|money/|\" build/dist/*",
"release": "dotenv release-it",
"pre-release": "dotenv npm run release -- --preRelease",
"upload": "dotenv node build/upload.js"
},
"devDependencies": {
"@nextcloud/axios": "^2.4.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^9.0.0-alpha.2",
"@release-it/bumper": "^5.1.0",
"@release-it/keep-a-changelog": "^4.0.0",
"@testing-library/vue": "^8.1.0",
"@types/node": "^18.7.7",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^0.22.1",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.8",
"blinkdb": "^0.9.0",
"chart.js": "^4.4.0",
"chartjs-plugin-annotation": "^2.0.1",
"chartjs-plugin-datalabels": "^2.1.0",
"csv-parse": "^5.3.0",
"dayjs": "^1.11.4",
"dotenv-cli": "^6.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"eslint-plugin-vue": "^9.9.0",
"glob": "^8.0.3",
"jsdom": "^20.0.0",
"localforage": "^1.10.0",
"postcss": "^8.4.14",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"sass": "^1.56.1",
"tailwindcss": "^3.1.7",
"typescript": "^4.7.4",
"vite": "^5.1.4",
"vitest": "^1.6.0",
"vue": "^3.4.19",
"vue-chartjs": "^5.1.0",
"vue-eslint-parser": "^9.1.0",
"vue-material-design-icons": "^5.1.2",
"vue-router": "^4.3.0",
"vue-select": "^4.0.0-beta.6",
"vue-tsc": "^0.39.4",
"vue-virtual-scroller": "^2.0.0-beta.8"
}
}