-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.62 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.62 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "intake24",
"type": "module",
"version": "2026.1.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"description": "Dietary recall system",
"author": "",
"license": "Apache-2.0",
"homepage": "https://docs.intake24.org",
"repository": {
"type": "git",
"url": "git+https://github.com/intake24/intake24.git"
},
"bugs": {
"url": "https://github.com/intake24/intake24/issues"
},
"keywords": [
"Intake24",
"Dietary recall system"
],
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"prepare": "pnpm simple-git-hooks",
"clean": "rimraf --glob **/coverage **/dist **/node_modules",
"build": "pnpm --filter \"./apps/**\" build",
"acl:sync": "pnpm --filter @intake24/cli dev acl:sync",
"db:migrate": "pnpm --filter @intake24/db db:migrate && pnpm acl:sync",
"db:foods:migrate": "pnpm --filter @intake24/db db:foods:migrate",
"db:foods:migrate:undo": "pnpm --filter @intake24/db db:foods:migrate:undo",
"db:system:migrate": "pnpm --filter @intake24/db db:system:migrate",
"db:system:migrate:undo": "pnpm --filter @intake24/db db:system:migrate:undo",
"cli": "pnpm --filter @intake24/cli cli",
"cli:dev": "pnpm --filter @intake24/cli dev",
"i18n:sync": "pnpm --filter @intake24/i18n i18n:sync",
"changelog": "conventional-changelog -p angular --stdout",
"release": "pnpm unrun scripts/release.ts",
"lint": "eslint . --fix",
"test": "pnpm test:unit && test:integration",
"test:unit": "pnpm test:unit:apps && pnpm test:unit:pkgs",
"test:unit:apps": "pnpm --filter \"./apps/*\" test:unit",
"test:unit:pkgs": "pnpm --filter \"./packages/{common,common-backend,i18n}\" test:unit",
"test:unit:coverage": "pnpm --filter * test:unit:coverage",
"test:integration": "pnpm --filter ./apps/api test:integration",
"test:integration:coverage": "pnpm --filter * test:integration:coverage"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@types/node": "^24.12.2",
"@types/prompts": "^2.4.9",
"calver": "^24.1.0",
"conventional-changelog": "^7.2.0",
"conventional-changelog-angular": "^8.3.1",
"eslint": "^10.2.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-vue": "^10.8.0",
"execa": "^9.6.1",
"lint-staged": "^16.4.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"unrun": "^0.2.34",
"vitest": "^4.1.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm unrun scripts/verify-commit.ts $1"
},
"lint-staged": {
"*": "eslint --fix"
}
}