-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 975 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 975 Bytes
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
{
"name": "hmcts-app",
"private": true,
"scripts": {
"dev": "concurrently \"npm start --prefix server\" \"npm start --prefix client\"",
"build": "npm run build --prefix client && npm run build --prefix server",
"typecheck": "concurrently \"tsc --noEmit --project client/tsconfig.json\" \"tsc --noEmit --project server/tsconfig.json\"",
"test": "concurrently \"npm test --prefix client\" \"npm test --prefix server\"",
"check-all": "npm run typecheck && npm run test"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.8",
"@types/cors": "^2.8.18",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.5.0",
"concurrently": "^8.2.2",
"ts-node-dev": "^2.0.0",
"vite": "^6.3.5"
},
"dependencies": {
"axios": "^1.9.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sqlite3": "^5.1.7",
"typescript": "^5.8.3"
}
}