-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.3 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
{
"private": true,
"repository": "mcansh/remix-fastify",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "pnpm run --filter remix-fastify --filter playground --recursive --parallel dev",
"dev:vite": "pnpm run --filter remix-fastify --filter vite-remix --recursive --parallel dev",
"build:packages": "pnpm run --recursive --parallel --filter \"./packages/**\" build",
"build:apps": "pnpm run --recursive --parallel --filter \"./apps/**\" build",
"build": "pnpm run --sequential \"/^build:.*/\"",
"test": "pnpm run --recursive test",
"publish": "./scripts/publish.js",
"publint": "publint ./packages/**",
"attw": "attw ./packages/** --pack",
"lint": "eslint --ignore-path .gitignore --no-error-on-unmatched-pattern --cache --cache-location node_modules/.cache/eslint --fix .",
"format": "prettier --ignore-path .prettierignore --ignore-path .gitignore --ignore-unknown --cache --cache-location node_modules/.cache/prettiercache --write .",
"validate": "pnpm run --parallel lint format publint typecheck",
"typecheck": "pnpm run --recursive typecheck",
"changeset": "changeset",
"changeset:version": "changeset version && node ./scripts/remove-prerelease-changelogs.js && node ./scripts/post-changeset.js",
"changeset:release": "pnpm run build && pnpm publish -r"
},
"dependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.4",
"@manypkg/get-packages": "^3.1.0",
"@npmcli/package-json": "^6.2.0",
"@remix-run/changelog-github": "^0.0.5",
"@remix-run/eslint-config": "2.17.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^24.10.0",
"@types/npmcli__package-json": "^4.0.4",
"chalk": "^5.4.1",
"eslint": "^9.28.0",
"eslint-plugin-prefer-let": "^4.0.0",
"glob": "^11.1.0",
"jsonfile": "^6.1.0",
"pkg-pr-new": "^0.0.51",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.12",
"prompt-confirm": "^2.0.4",
"publint": "^0.3.15",
"react": "^19.2.0",
"semver": "^7.7.2",
"tsdown": "^0.12.6",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"vitest": "^4.0.6"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}