-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 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
{
"name": "Paper Plane",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"dev:server": "npm --prefix server run dev",
"build:server": "npm --prefix server run build",
"test:server": "npm --prefix server test",
"install:all": "npm install && npm --prefix server install && cd ocr && pip install -r requirements.txt",
"install:server": "npm --prefix server install",
"dev:ocr": "cd ocr && uvicorn main:app --reload",
"test:ocr": "cd ocr && pytest",
"install:ocr": "cd ocr && pip install -r requirements.txt",
"test:cucumber:run": "cucumber-js --require-module ts-node/register/transpile-only --require \"./features/step_definitions/**/*.ts\"",
"test:cucumber": "start-server-and-test dev http://localhost:3000 dev:server http://localhost:3002/api/v1/health test:cucumber:run",
"test:e2e:run": "cucumber-js --require-module ts-node/register --require \"./features/**/*.ts\"",
"test:e2e": "start-server-and-test dev http://localhost:3000 dev:server http://localhost:3002/api/v1/health test:e2e:run",
"dev:frontend": "next dev",
"build:frontend": "next build",
"test:frontend": "start-server-and-test dev:all \"http://localhost:3000|http://localhost:3002/api/v1/health\" \"npx playwright test && npm run test:e2e:run\"",
"seed": "npm --prefix server run seed --",
"dev:all": "concurrently --names \"SERVER,CLIENT,OCR\" -c \"cyan,magenta,yellow\" \"npm run dev:server\" \"npm run dev:frontend\" \"npm run dev:ocr\"",
"build:all": "npm run build:server && npm run build:frontend && npm run build:ocr",
"test:all": "concurrently --names \"CLIENT,SERVER,OCR\" -c \"cyan,magenta,yellow\" \"npm run test:frontend\" \"npm run test:server\" \"npm run test:ocr\"",
"artillery": "ts-node artillery.ts"
},
"dependencies": {
"@prisma/client": "^6.1.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"firebase": "^12.5.0",
"next": "16.0.1",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@artilleryio/playwright-reporter": "^1.1.3",
"@cucumber/cucumber": "^12.2.0",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4",
"@types/cors": "^2.8.17",
"@types/multer": "^2.0.0",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^4.0.6",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-config-next": "16.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"playwright": "^1.56.1",
"prisma": "^6.1.0",
"start-server-and-test": "^2.1.3",
"supertest": "^7.1.4",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitest": "^4.0.6"
}
}