-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.21 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.21 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
{
"name": "travstats",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently -n \"backend,frontend\" -c \"cyan,yellow\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test -- --forceExit",
"test:frontend": "cd frontend && npx vitest --run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"typecheck": "npm run typecheck:backend && npm run typecheck:frontend",
"typecheck:backend": "cd backend && npx tsc --noEmit",
"typecheck:frontend": "cd frontend && npx tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"concurrently": "^9.2.1"
}
}