-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.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
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
{
"name": "mango",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild"
]
},
"scripts": {
"dev": "pnpm --filter @mango/desktop dev",
"prepare": "pnpm hooks:install",
"build": "turbo run build",
"package": "pnpm --filter @mango/desktop package",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"hooks:install": "node tooling/scripts/install-git-hooks.mjs",
"branch:check": "node tooling/scripts/check-branch-name.mjs",
"prtitle:check": "node tooling/scripts/check-pr-title.mjs",
"commitlint:recent": "commitlint --from HEAD~1 --to HEAD --verbose",
"architecture-check": "node tooling/scripts/check-architecture.mjs",
"check:contracts": "pnpm --filter @mango/contracts test",
"smoke:desktop": "node tooling/scripts/desktop-smoke.mjs",
"clean": "node tooling/scripts/clean-generated.mjs",
"verify": "pnpm format:check && pnpm lint && pnpm architecture-check && pnpm test && pnpm check:contracts && pnpm typecheck && pnpm build && pnpm smoke:desktop"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.20.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"jsdom": "^25.0.1",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"turbo": "^2.4.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}