-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (46 loc) · 1.72 KB
/
package.json
File metadata and controls
47 lines (46 loc) · 1.72 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
{
"name": "api-latency-visualizer",
"version": "1.0.0",
"description": "MVP for visualizing API latency with percentile analysis",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"start": "node dist/server.js",
"migrate": "node dist/migrations/migrate.js",
"client": "cd client && npm start",
"client:build": "cd client && npm run build",
"dev:all": "concurrently \"npm run dev:shared\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:shared": "cd packages/shared && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build:all": "npm run build:shared && npm run build:backend && npm run build:frontend",
"build:shared": "cd packages/shared && npm run build",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"test:all": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"typecheck": "npm run typecheck:backend && npm run typecheck:frontend",
"typecheck:backend": "cd backend && npx tsc --noEmit",
"typecheck:frontend": "cd frontend && npx tsc --noEmit"
},
"keywords": ["api", "latency", "visualization"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"pg": "^8.11.3",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/cors": "^2.8.17",
"@types/pg": "^8.10.9",
"typescript": "^5.3.3",
"ts-node-dev": "^2.0.0",
"concurrently": "^8.2.2"
}
}