-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.96 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.96 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "trace-generator",
"version": "1.0.0",
"description": "Generates OpenTelemetry traces for a random class-based application structure and sends them to an OTel collector. This package is notably used by the software visualization tool \"ExplorViz\".",
"type": "module",
"main": "./src/app.js",
"scripts": {
"dev": "concurrently \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"dev:backend": "tsx ./src/backend/server.ts",
"dev:frontend": "vite",
"build": "pnpm run build:backend && pnpm run build:frontend",
"build:backend": "tsc --project tsconfig.backend.json && node scripts/fix-imports.mjs",
"build:frontend": "vite build",
"start": "node ./dist/backend/server.js",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "node .husky/install.mjs || true"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "4.0.16",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^15.2.10",
"postcss": "^8.5.6",
"prettier": "3.3.3",
"tailwindcss": "^4.1.17",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.47.0",
"vitest": "^4.0.16"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@heroicons/react": "^2.2.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^1.28.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.55.0",
"@opentelemetry/resources": "^1.28.0",
"@opentelemetry/sdk-node": "^0.55.0",
"@opentelemetry/sdk-trace-base": "^1.28.0",
"@opentelemetry/sdk-trace-node": "^1.28.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"lucide-react": "^0.554.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"vite": "^6.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}