-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"bundlewatch": {
"ci": {
"trackBranches": [
"main"
]
},
"files": [
{
"path": "./packages/core/dist/core.cjs.production.min.js",
"maxSize": "6 kB",
"compression": "none"
},
{
"path": "./packages/dom/dist/dom.cjs.production.min.js",
"maxSize": "2 kB",
"compression": "none"
},
{
"path": "./packages/utils/dist/utils.cjs.production.min.js",
"maxSize": "5 kB",
"compression": "none"
}
]
},
"scripts": {
"build": "npm run build --workspace=@react-rxjs/core && npm run build --workspace=@react-rxjs/utils --workspace=@react-rxjs/dom",
"lint": "npm run lint --workspaces",
"format": "npm run format --workspaces",
"test": "npm run test --workspaces",
"prepare": "husky install"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "^0.24.2",
"expose-gc": "^1.0.0",
"husky": ">=8.0.3",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-test-renderer": "^19.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
}
}