forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "remix-the-web",
"type": "module",
"private": true,
"packageManager": "pnpm@10.26.0",
"dependencies": {
"@typescript/native-preview": "catalog:",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-prefer-let": "^4.0.0",
"prettier": "^3.3.3",
"tsx": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "^8.40.0"
},
"engines": {
"node": ">=24.3.0"
},
"scripts": {
"postinstall": "test -n \"$CI\" || pnpm --filter @remix-run/component exec playwright install",
"build": "pnpm -r build",
"changes:preview": "node ./scripts/changes-preview.ts",
"changes:validate": "node ./scripts/changes-validate.ts",
"changes:version": "node ./scripts/changes-version.ts",
"clean": "git clean -fdX -e '!/.env' .",
"codegen": "pnpm -r run codegen",
"docs": "cd docs && pnpm run docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate-remix": "node scripts/generate-remix.ts",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"pr-preview": "node scripts/pr-preview.ts",
"setup-installable-branch": "node scripts/setup-installable-branch.ts",
"test": "pnpm --parallel run test",
"typecheck": "pnpm -r typecheck"
},
"workspaces": [
"packages/*"
],
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"@remix-run/dom",
"@remix-run/events",
"@remix-run/style",
"@swc/core",
"esbuild",
"sharp",
"workerd"
]
}
}