-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "forge",
"private": true,
"packageManager": "pnpm@9.12.3",
"scripts": {
"prepare": "husky",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"dev": "turbo run dev --parallel",
"fetch-secrets": "turbo run fetch-secrets --continue=always",
"format": "prettier --write .",
"format:check": "prettier --check .",
"android": "pnpm --filter @forge/mobile android",
"ios": "pnpm --filter @forge/mobile ios"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0",
"prettier --write"
],
"*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"@hono/node-server": "1.19.14",
"@apollo/server": "5.5.0",
"@casl/ability": "6.7.5",
"@nestjs/core": "11.1.18",
"@tootallnate/once": "3.0.1",
"@xmldom/xmldom": "0.8.12",
"ajv@8": "8.18.0",
"axios@0": "0.31.0",
"axios@1": "1.15.0",
"bn.js": "4.12.3",
"brace-expansion@4": "5.0.5",
"defu": "6.1.7",
"devalue": "5.6.4",
"esbuild": "0.27.3",
"fast-xml-parser": "5.5.7",
"file-type": "21.3.2",
"flatted": "3.4.2",
"follow-redirects": "1.16.0",
"handlebars": "4.7.9",
"hono": "4.12.14",
"koa": "2.16.4",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"express>path-to-regexp": "0.1.13",
"markdown-it": "14.1.1",
"minimatch@3": "3.1.5",
"minimatch@9": "9.0.7",
"minimatch@10": "10.2.5",
"@nestjs/core>path-to-regexp": "8.4.0",
"node-forge": "1.4.0",
"picomatch@2": "2.3.2",
"picomatch@3": "3.0.2",
"picomatch@4": "4.0.4",
"qs": "6.14.2",
"router>path-to-regexp": "8.4.2",
"rollup": "4.60.1",
"serialize-javascript": "7.0.5",
"tar": "7.5.13",
"tmp": "0.2.5",
"undici@6": "6.24.0",
"undici@7": "7.24.0",
"vitest>vite": "6.4.2",
"@strapi/strapi>vite": "6.4.2",
"vite@5": "6.4.2",
"vite@6": "6.4.2",
"webpack": "5.106.2",
"yaml@1": "1.10.3",
"yaml@2": "2.8.3"
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.0.0",
"@next/eslint-plugin-next": "16.2.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.8.9",
"typescript-eslint": "^8.56.0"
}
}