-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.25 KB
/
package.json
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
{
"name": "@simonsmith/react-router-fastify",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/simonsmith/react-router-fastify"
},
"author": "Simon Smith <[email protected]>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production run-s 'build:react' 'build:server' 'build:ext'",
"build:ext": "ts-add-js-extension --dir build/fastify",
"build:react": "react-router build",
"build:server": "tsc --project tsconfig.server.json",
"check": "run-p 'check:*'",
"check:eslint": "echo 'Checking eslint...' && eslint --ext .js,.ts,.tsx .",
"check:format": "prettier --check .",
"check:type": "echo 'Checking typescript...' && run-s typegen 'build:server --noEmit' 'tsc --noEmit'",
"dev": "tsx watch ./server/start",
"format": "prettier --write .",
"start": "NODE_ENV=production node --env-file-if-exists=.env --env-file-if-exists=.env.production ./build/fastify/start.js",
"tsc": "tsc",
"typegen": "react-router typegen"
},
"dependencies": {
"@mcansh/remix-fastify": "^4.0.4",
"@react-router/node": "^7.1.3",
"@react-router/serve": "^7.1.3",
"@tanstack/react-query": "^5.65.0",
"fastify": "^5.2.1",
"get-port": "^7.1.0",
"isbot": "^5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3"
},
"devDependencies": {
"@react-router/dev": "^7.1.3",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/eslint-plugin-query": "^5.65.0",
"@tanstack/react-query-devtools": "^5.65.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "^5.1.0",
"npm-run-all2": "^7.0.2",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"ts-add-js-extension": "^1.6.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "22.13.0"
}
}