-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"name": "perses-shared",
"description": "Monorepo for the Perses UI shared packages",
"version": "0.55.0-beta.12",
"private": true,
"type": "module",
"engines": {
"node": ">=24",
"npm": ">=11"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"format": "turbo run format:root",
"format:check": "turbo run format:root:check",
"format:root": "oxfmt",
"format:root:check": "oxfmt --check",
"type-check": "turbo run type-check",
"start": "turbo run start",
"clean": "turbo run clean",
"reinstall": "npm run clean && rm -rf **/node_modules && npm install",
"clear-turbo-cache": "rimraf ./.turbo/cache",
"doctor": "npx react-doctor@latest"
},
"workspaces": [
"components",
"dashboards",
"plugin-system",
"explore",
"client"
],
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.3.61",
"@tanstack/react-query": "^4.39.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^24.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"concurrently": "^10.0.3",
"cross-env": "^7.0.3",
"jsdom": "^26.1.0",
"oxfmt": "0.55.0",
"oxlint": "1.70.0",
"oxlint-plugin-react-doctor": "0.9.12",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-refresh": "^0.16.0",
"rimraf": "^5.0.5",
"turbo": "^2.3.4",
"typescript": "7.0.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "4.1.11"
},
"packageManager": "npm@11.17.0"
}