-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.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.22.7",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.4.7",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitest/coverage-v8": "^0.33.0",
"esbuild": "^0.18.11",
"expose-gc": "^1.0.0",
"husky": ">=8.0.3",
"jest-environment-jsdom": "^29.6.1",
"jsdom": "^22.1.0",
"lint-staged": ">=13.2.3",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
}
}