-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.35 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.35 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
{
"name": "highcharts-grid-react",
"description": "Monorepo for Highcharts Grid Pro & Lite React libraries.",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"pretest:e2e": "pnpm build",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "pnpm test && pnpm test:e2e",
"check": "pnpm lint && pnpm test",
"build": "pnpm -r --filter './packages/*' run build",
"lint": "pnpm -r --filter './packages/*' run lint",
"clean": "pnpm -r --filter './{packages,examples}/*' run clean && rimraf node_modules",
"release:preflight": "pnpm check && pnpm build",
"release:prepare": "node scripts/release.js",
"release": "pnpm release:preflight && pnpm publish -r --access public"
},
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^5.6.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20.0.0",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"eslint": "^9.39.1",
"globals": "^17.0.0",
"playwright": "^1.57.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.16"
}
}