-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
109 lines (109 loc) · 3.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "financier",
"private": true,
"type": "module",
"version": "1.9.3",
"releaseDate": "2024-11-02",
"description": "Straightforward budgeting",
"main": "index.js",
"scripts": {
"build": "vite build",
"lint": "eslint --max-warnings=0 src/",
"format": "prettier --check src/",
"test": "vitest",
"test-coverage": "vitest --coverage",
"start": "vite",
"docs": "jsdoc --configure .jsdoc.json",
"pull": "docker pull --platform=linux/amd64 ghcr.io/financier-io/financier",
"push": "docker push ghcr.io/financier-io/financier:production",
"tag:prod": "docker tag ghcr.io/financier-io/financier:latest ghcr.io/financier-io/financier:production",
"prod": "pnpm pull && pnpm tag:prod && pnpm push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/financier-io/financier.git"
},
"author": "Alexander Harding",
"bugs": {
"url": "https://github.com/financier-io/financier/issues"
},
"homepage": "https://github.com/financier-io/financier",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"devDependencies": {
"autoprefixer": "^10.4.20",
"babel-plugin-angularjs-annotate": "^0.10.0",
"eslint": "^9.14.0",
"eslint-plugin-vitest": "^0.5.4",
"financier-docdash": "^0.7.0",
"globals": "^15.11.0",
"jsdoc": "^4.0.4",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"pouchdb-adapter-memory": "^9.0.0",
"prettier": "^3.3.3",
"sass": "^1.80.6",
"vite": "^5.4.10",
"vite-plugin-babel": "^1.2.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-webfont-dl": "^3.9.5",
"vitest": "^2.1.4",
"vitest-angular-mocks": "github:aeharding/vitest-angular-mocks"
},
"dependencies": {
"@uirouter/angularjs": "^0.4.1",
"angular": "^1.5.9",
"angular-animate": "^1.5.9",
"angular-dateParser": "^1.2.1",
"angular-dynamic-locale": "^0.1.38",
"angular-hotkeys": "^1.7.0",
"angular-hotkeys-light": "^1.1.1",
"angular-i18n": "^1.5.9",
"angular-ladda-lw": "^0.4.3",
"angular-legacy-sortablejs-maintained": "github:OzzieOrca/angular-legacy-sortablejs#fix-sortablejs-import",
"angular-md5": "^0.1.10",
"angular-messages": "^1.8.3",
"angular-resizable": "^1.2.0",
"angular-sanitize": "^1.5.9",
"angular-smart-table": "^2.1.11",
"angular-translate": "^2.19.0",
"angular-vs-repeat": "^1.1.7",
"chart.js": "2.2.1",
"expr-eval": "^2.0.2",
"file-saver": "^2.0.5",
"font-awesome": "^4.7.0",
"jszip": "^3.10.1",
"moment": "^2.30.1",
"ng-dialog": "^1.4.0",
"normalize.css": "^8.0.1",
"papaparse": "^5.4.1",
"pouchdb-browser": "^9.0.0",
"pouchdb-core": "^9.0.0",
"sortablejs": "^1.15.3",
"st-multi-sort": "^1.1.2",
"tether-drop": "^1.4.2",
"underscore": "^1.13.7",
"uuid": "^11.0.2"
},
"pnpm": {
"allowedDeprecatedVersions": {
"angular": "^1.5.9",
"angular-animate": "^1.5.9",
"angular-i18n": "^1.5.9",
"angular-sanitize": "^1.5.9",
"angular-translate": "^2.19.0"
},
"updateConfig": {
"ignoreDependencies": [
"angular",
"angular-animate",
"angular-i18n",
"angular-sanitize",
"angular-translate",
"@uirouter/angularjs",
"angular-vs-repeat",
"chart.js"
]
}
}
}