-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.42 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.42 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
94
{
"name": "webapp",
"private": true,
"type": "module",
"scripts": {
"preinstall": "node -e \"if(process.version.slice(1).split('.')[0] < 18) throw new Error('Node 18+ required')\"",
"build": "react-router build",
"format": "prettier \"**/*.{ts,tsx,js,json}\" --write --experimental-cli && eslint --cache --fix \"**/*.{ts,tsx,js,yml}\"",
"format:staged": "lint-staged",
"lint": "eslint --cache .",
"prepare": "husky",
"dev": "cross-env NODE_ENV=development node server.js | pino-pretty",
"start": "setup-db node server.js",
"typecheck": "react-router typegen && tsc -b"
},
"lint-staged": {
"*.js": [
"prettier --ignore-unknown --ignore-path ./.gitignore --write",
"eslint --cache --fix"
],
"*.{ts,tsx}": [
"prettier --ignore-unknown --ignore-path ./.gitignore --write",
"eslint --cache --fix"
],
"*.yml": "eslint --cache --fix"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-router/express": "^7.9.3",
"@react-router/fs-routes": "^7.9.3",
"@react-router/node": "^7.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compression": "^1.7.5",
"express": "^5.1.0",
"isbot": "^5.1.27",
"lucide-react": "^0.544.0",
"mongoose": "^8.16.4",
"morgan": "^1.10.0",
"pino": "^10.1.0",
"pino-caller": "^4.0.0",
"pino-pretty": "^13.1.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.9.3",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@react-router/dev": "^7.9.3",
"@stylistic/eslint-plugin": "^5.2.2",
"@tailwindcss/vite": "^4.1.4",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.1",
"@types/express-serve-static-core": "^5.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.19.9",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"cross-env": "^7.0.3",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-yml": "^1.18.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vite": "^6.3.3",
"vite-plugin-devtools-json": "^1.0.0",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}