-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 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
{
"name": "tracking",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"db:generate": "dotenv -- drizzle-kit generate",
"db:migrate": "dotenv -- drizzle-kit migrate",
"db:migrate:prod": "drizzle-kit migrate",
"db:seed": "dotenv -- tsx scripts/seed-roles.ts",
"dev": "dotenv -- node server.js --host=0.0.0.0",
"start": "node server.js --host=0.0.0.0",
"typecheck": "react-router typegen && tsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@react-router/express": "^7.7.1",
"@react-router/fs-routes": "^7.7.1",
"@react-router/node": "^7.7.1",
"better-auth": "^1.3.26",
"compression": "^1.8.0",
"drizzle-kit": "~0.31.4",
"drizzle-orm": "~0.36.3",
"express": "^5.1.0",
"isbot": "^5.1.27",
"morgan": "^1.10.0",
"postgres": "^3.4.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.7.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@react-router/dev": "^7.7.1",
"@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",
"@types/pg": "^8.11.14",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-router": "^0.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.4",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^6.3.3",
"vite-tsconfig-paths": "^5.1.4"
}
}