-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"name": "medialoom-workspace",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "tsc -p tsconfig.eslint.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest:e2e": "node e2e/generate-stream.mjs && pnpm -r build && node e2e/build-react-harness.mjs",
"test:e2e": "playwright test",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm -r build && changeset publish",
"prerelease:build": "pnpm -r build",
"release": "changeset version && pnpm prerelease:build && changeset publish"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.2.0",
"@types/react": "^19.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.9.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.11.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"typescript": "^5.6.0",
"typescript-eslint": "^8.67.0",
"vitest": "^2.1.0"
},
"packageManager": "pnpm@9.15.9"
}