-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node-fastify-react-radix-scaffold",
"version": "0.4.0",
"description": "Node fastify Prisma scaffold",
"main": "dist/server/index.js",
"type": "module",
"scripts": {
"build": "npm run build:browser && npm run build:server",
"build:browser": "vite build",
"build:server": "tsc --project src/server/tsconfig.json",
"clean": "rimraf dist",
"husky:pre-push": "npm test",
"husky:pre-commit": "npx --no lint-staged",
"husky:commit-msg": "npx --no commitlint -- --edit",
"start:server": "node --env-file=.env ./dist/index.js",
"start:browser": "vite dev",
"watch:build:server": "npm run build:server -- --watch --incremental --sourceMap --preserveWatchOutput",
"test": "vitest run",
"prepare": "npm run clean && npx --no prisma generate && npm run build && npx --no husky"
},
"keywords": [
"node",
"short-link"
],
"author": "Han Jiawei",
"license": "MIT",
"dependencies": {
"@fastify/compress": "^8.0.1",
"@fastify/cookie": "^11.0.2",
"@fastify/http-proxy": "^11.0.1",
"@fastify/session": "^11.1.0",
"@fastify/static": "^8.0.4",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"@prisma/client": "^6.3.0",
"connect-redis": "^8.0.1",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"ioredis": "^5.4.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@radix-ui/themes": "^3.2.0",
"@tailwindcss/postcss": "^4.0.3",
"@tanstack/react-table": "^8.20.6",
"@testing-library/react": "^16.2.0",
"@types/express-session": "^1.18.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/ws": "^8.5.14",
"@vitejs/plugin-react": "^4.3.4",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"happy-dom": "^16.8.1",
"husky": "^9.1.7",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"jotai": "^2.11.3",
"ky": "^1.7.4",
"lint-staged": "^15.4.3",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "15.4.0",
"react-router": "^7.1.5",
"rimraf": "^6.0.1",
"sortier": "^2.1.0",
"tailwindcss": "^4.0.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "6.0.11",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20.11.0",
"npm": ">=10.0.0"
}
}