-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.09 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.09 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
{
"name": "instrumentation-explorer",
"version": "1.0.0",
"scripts": {
"update-instrumentation": "python3 scripts/update-instrumentation-list.py",
"process-data": "cd data-processing-v2 && npm run generate",
"process-data:deploy": "cd data-processing-v2 && npm run generate:deploy",
"process-data:legacy": "cd data-processing && python3 main.py",
"dev": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=frontend",
"preview": "npm run preview --workspace=frontend",
"screenshots": "npm run build && node scripts/take-screenshots.mjs",
"install-browsers": "npx playwright install",
"lint": "npm run lint --workspace=frontend",
"test": "npm run test --workspace=frontend",
"test:run": "npm run test:run --workspace=frontend",
"test:e2e": "npm run test:e2e --workspace=frontend",
"test:all": "npm run test:run && npm run build && npm run test:e2e"
},
"devDependencies": {
"playwright": "^1.54.1"
},
"workspaces": [
"frontend"
],
"dependencies": {
"finalhandler": "^2.1.0",
"serve-static": "^2.2.0"
}
}