-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "codex-pro-max",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k -n api,ui -c cyan,magenta \"tsx watch src/index.ts\" \"node scripts/wait-for-api.mjs && vite --host 127.0.0.1 --port 53128\"",
"dev:api": "tsx watch src/index.ts",
"dev:ui": "vite --host 127.0.0.1 --port 53128",
"build": "tsc -p tsconfig.json --noEmit && vite build",
"build:ui": "vite build",
"test": "vitest run -c vitest.config.ts"
},
"dependencies": {
"express": "^5.2.1",
"katex": "^0.16.47",
"multer": "^2.1.1",
"photoswipe": "^5.4.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.5"
}
}