-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.87 KB
/
package.json
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
{
"scripts": {
"build": "npm run build --workspaces",
"build:all": "npm run build --workspaces && npm run backend:build --workspace=@grafana/llm-app",
"dev": "npm run frontend:build && npm run backend:build && npm run build -w @grafana/llm && concurrently --names 'llm-frontend,llm-app' 'npm run dev -w @grafana/llm' 'npm run dev -w @grafana/llm-app' -c 'bgBlue.bold,bgMagenta.bold'",
"e2e:ci": "npm run e2e:ci --workspace=@grafana/llm-app",
"backend:update-sdk": "npm run backend:update-sdk --workspace=@grafana/llm-app",
"backend:build": "npm run backend:build --workspace=@grafana/llm-app",
"backend:test": "npm run backend:test --workspace=@grafana/llm-app",
"backend:restart": "npm run backend:restart --workspace=@grafana/llm-app",
"frontend:build": "npm run build --workspace=@grafana/llm",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"server": "npm run server --workspace=@grafana/llm-app",
"test": "concurrently --names 'llm-frontend,llm-app' 'npm run test:watch -w @grafana/llm' 'npm run test:watch -w @grafana/llm-app' -c 'bgBlue.bold,bgMagenta.bold'",
"test:ci": "npm run test:ci --workspaces",
"typecheck": "npm run typecheck --workspaces"
},
"author": "Grafana",
"license": "Apache-2.0",
"workspaces": [
"packages/grafana-llm-frontend",
"packages/grafana-llm-app"
],
"devDependencies": {
"@grafana/eslint-config": "^7.0.0",
"@grafana/plugin-e2e": "^1.13.0",
"@swc/core": "1.6.13",
"@swc/helpers": "^0.5.13",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/testing-library__jest-dom": "5.14.8",
"concurrently": "^9.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"typescript": "5.6.2"
},
"engines": {
"node": ">=20"
}
}