-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "balanzo",
"version": "0.0.1",
"description": "Another personal finance tracker application called Balanzo.",
"repository": {
"type": "git",
"url": "git+https://github.com/rolandcsosz/balanzo.git"
},
"author": "Roland Csősz",
"license": "MIT",
"bugs": {
"url": "https://github.com/rolandcsosz/balanzo/issues"
},
"homepage": "https://github.com/rolandcsosz/balanzo#readme",
"private": true,
"workspaces": [
"backend",
"ui",
"e2e"
],
"type": "module",
"scripts": {
"format": "prettier --write \"**/*.{ts,tsx,cjs,js,jsx,json,css,scss,sass}\"",
"lint": "eslint ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript-eslint": "^8.53.1"
}
}