-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 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
{
"name": "@prose-reader/root",
"private": true,
"version": "1.0.0",
"main": "index.js",
"author": "Maxime Bret <bret.maxime@gmail.com>",
"license": "MIT",
"scripts": {
"start": "lerna run start --stream --ignore prose-reader-front",
"start:lib": "lerna run start --stream --scope @prose-reader/* --concurrency 15",
"start:front": "lerna run dev --stream --scope prose-reader-front",
"start:demo": "lerna run start --stream --scope demo",
"build": "lerna run build --stream",
"check:react-reader-enhancers": "npm run check:enhancers --workspace @prose-reader/react-reader",
"tsc": "lerna run tsc --parallel",
"format": "npx @biomejs/biome format .",
"lint": "npx @biomejs/biome lint .",
"test": "lerna run test --parallel",
"publish-packages": "npm test && npm run build && lerna publish minor --yes",
"prepare": "husky"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/node": "^24.3.0",
"@types/rollup-plugin-node-builtins": "^2.1.2",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "^10.4.18",
"husky": "^9.1.7",
"lerna": "^8.1.2",
"lint-staged": "^16.1.2",
"rollup-plugin-node-externals": "^8.0.0",
"rxjs": "*",
"serve": "^14.2.0",
"vite": "^7",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-pwa": "^1.0.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^4.0.16",
"workbox-build": "^7.0.0",
"workbox-window": "^7.0.0"
},
"dependencies": {
"@rollup/plugin-replace": "^6.0.1",
"reactjrx": "^1.126.0",
"typescript": "*"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
]
}
}