-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.73 KB
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
{
"name": "moneymoney-sankey",
"description": "An extension for the great MoneyMoney app to export an interactive HTML Sankey Chart based on the transaction categories",
"private": true,
"dependencies": {
"@alpinejs/csp": "^3.15.12",
"@alpinejs/persist": "^3.15.12",
"bootstrap": "^5.3.8",
"highcharts": "^12.6.0",
"lz-string": "^1.5.0"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"bundlesize2": "^0.0.35",
"concurrently": "^9.2.1",
"esbuild": "^0.27.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.57.0",
"html-validate": "^10.0.0",
"http-server": "^14.1.1",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"replace-in-file": "^8.0.1",
"typescript": "^5.5.2"
},
"author": "Christoph Massmann <chris@dev-investor.de>",
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && node ./build.mjs",
"dev": "concurrently \"tsc --watch --noEmit\" \"node ./build.mjs --dev\"",
"test": "npm-run-all lint test:*",
"test:output": "html-validate $npm_package_config_testOutputFile && INTERNAL_SKIP_CACHE=true bundlesize --enable-github-checks",
"test:e2e": "npx playwright test",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "husky",
"start": "http-server",
"clean": "rm -f $npm_package_config_outputDir/* && (rmdir $npm_package_config_outputDir || true) && rm -f $npm_package_config_testOutputFile"
},
"config": {
"templateFile": "./src/template.html",
"outputDir": "./dist/",
"testOutputFile": "./index.html"
},
"browserslist": [
"last 2 versions, not dead"
]
}