-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.05 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
52
53
54
55
{
"name": "finapp",
"type": "module",
"version": "7.12.3",
"private": true,
"packageManager": "pnpm@11.1.2",
"description": "Finapp helps you easily track and manage personal finances",
"author": "Ilya Komichev @ilkome",
"license": "MIT",
"homepage": "https://ilko.me",
"repository": "ilkome/finapp",
"engines": {
"node": ">=v24.12.0"
},
"scripts": {
"build": "pnpm -r --if-present build",
"dev": "pnpm --filter @finapp/app dev",
"dev:all": "pnpm --parallel --filter @finapp/app --filter @finapp/docs dev",
"dev:app": "pnpm --filter @finapp/app dev",
"dev:docs": "pnpm --filter @finapp/docs dev",
"dev:prod": "pnpm --filter @finapp/app dev:prod",
"docs:build": "pnpm --filter @finapp/docs build",
"docs:dev": "pnpm --filter @finapp/docs dev",
"generate": "pnpm --filter @finapp/app generate",
"lint": "eslint .",
"lint:app": "eslint app",
"lint:docs": "eslint docs",
"lint:fix": "eslint . --fix",
"preview": "pnpm --filter @finapp/app preview",
"test": "pnpm -r --if-present test",
"test:coverage": "pnpm --filter @finapp/app test:coverage",
"test:e2e": "pnpm --filter @finapp/app test:e2e",
"test:e2e:auth": "pnpm --filter @finapp/app test:e2e:auth",
"test:e2e:headed": "pnpm --filter @finapp/app test:e2e:headed",
"test:e2e:install": "pnpm --filter @finapp/app test:e2e:install",
"test:e2e:real": "pnpm --filter @finapp/app test:e2e:real",
"test:e2e:report": "pnpm --filter @finapp/app test:e2e:report",
"test:e2e:ui": "pnpm --filter @finapp/app test:e2e:ui",
"typecheck": "pnpm -r --if-present typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@nuxt/eslint-config": "^1.16.0",
"eslint": "^10.5.0",
"eslint-flat-config-utils": "^3.2.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-perfectionist": "^5.9.1",
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"vue-i18n": "11.4.6"
}
}