This repository was archived by the owner on Nov 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 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
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
{
"name": "microblog-ai-remix",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"build:server": "cd server && npm run build",
"build:all": "npm run clean && npm run build && npm run build:server",
"dev": "dotenv -- npm-run-all --parallel dev:*",
"dev:remix": "dotenv -- remix vite:dev",
"dev:server": "cd server && dotenv -- npm run build && npm run start",
"clean": "rimraf build && rimraf server/dist",
"lint": "eslint . --cache --cache-location ./node_modules/.cache/eslint",
"start": "node server/dist/index.js",
"typecheck": "tsc",
"deploy": "npm run build:all"
},
"dependencies": {
"@azure/identity": "^4.6.0",
"@azure/openai": "^2.0.0",
"@heroicons/react": "^2.2.0",
"@remix-run/dev": "^2.15.3",
"@remix-run/express": "^2.16.0",
"@remix-run/node": "^2.15.3",
"@remix-run/react": "^2.15.3",
"@remix-run/serve": "^2.15.3",
"@types/node": "^22.13.5",
"compression": "^1.8.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"isbot": "^5.1.22",
"lru-cache": "^11.0.2",
"morgan": "^1.10.0",
"openai": "^4.81.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^1.2.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@tailwindcss/postcss": "^4.1.4",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.21.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"fs-extra": "^11.3.0",
"glob": "^10.3.10",
"globals": "^16.0.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"tailwindcss": "^4.0.9",
"typescript": "^5.1.6"
},
"overrides": {
"esbuild": "0.25.0",
"cookie": "0.7.0"
},
"engines": {
"node": ">=18.17.1"
}
}