-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.15 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.15 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
{
"private": true,
"name": "ocrdocs",
"version": "0.0.0",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"postinstall": "npm run build",
"build:client": "cd src/client && vite build",
"build:server": "cd src/server && vite build",
"build": "npm run build:client && npm run build:server",
"check": "npm run type-check && npm run lint:fix && npm run prettier",
"deploy": "npm run build && npx devvit upload",
"dev": "concurrently -k -p \"[{name}]\" -n \"CLIENT,SERVER,DEVVIT\" -c \"blue,green,magenta\" \"npm run dev:client\" \"npm run dev:server\" \"npm run dev:devvit\"",
"dev:client": "cd src/client && vite build --watch",
"dev:devvit": "npx devvit playtest r/ocrdocs_dev",
"dev:server": "cd src/server && vite build --watch",
"dev:vite": "cd src/client && vite --port 7474",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"login": "npx devvit login",
"launch": "npm run build && npm run deploy && npx devvit publish",
"prettier": "prettier-package-json --write ./package.json && prettier --write .",
"type-check": "tsc --build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.919.0",
"@aws-sdk/s3-request-presigner": "^3.919.0",
"@devvit/web": "0.12.1",
"@google/generative-ai": "^0.24.1",
"@types/pg": "^8.15.6",
"clsx": "2.1.1",
"devvit": "0.12.1",
"express": "5.1.0",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "3.3.0",
"tesseract.js": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "9.23.0",
"@tailwindcss/vite": "4.1.6",
"@types/express": "5.0.1",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@vitejs/plugin-react": "4.4.1",
"concurrently": "9.1.2",
"dotenv-cli": "8.0.0",
"eslint": "9.23.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"globals": "15.15.0",
"prettier": "3.5.3",
"prettier-package-json": "2.8.0",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.1.6",
"typescript": "5.8.2",
"typescript-eslint": "8.29.0",
"vite": "6.2.4",
"vitest": "3.1.1"
}
}