-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 4.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@rxts/react",
"version": "0.0.0",
"type": "module",
"description": "Make React greater with RxTS",
"repository": "git@github.com:rx-ts/react.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/@react-enhanced/*"
],
"packageManager": "pnpm@8.2.0",
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs --esbuild {jsxFactory:'React.createElement'}",
"build:tsc": "tsc -b",
"clean": "rimraf dist packages/**/*/{lib,*.tsbuildinfo}",
"codesandbox:install": "yarn",
"dev": "vite dev",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint . --cache",
"lint:ts": "tsc --noEmit",
"postversion": "pnpm i --no-frozen-lockfile",
"prepare": "simple-git-hooks || exit 0",
"prerelease": "pnpm build",
"prevercel-build": "pnpm build",
"release": "changeset publish",
"start": "vite preview",
"test": "vitest run --coverage",
"typecov": "type-coverage",
"vercel-build": "vite build",
"version": "changeset version"
},
"devDependencies": {
"@1stg/app-config": "^8.0.1",
"@1stg/lib-config": "^11.0.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@mdx-js/react": "^2.3.0",
"@mdx-js/rollup": "^2.3.0",
"@react-enhanced/eslint-plugin": "link:packages/@react-enhanced/eslint-plugin",
"@react-enhanced/hooks": "link:packages/@react-enhanced/hooks",
"@react-enhanced/plugins": "link:packages/@react-enhanced/plugins",
"@react-enhanced/shared": "link:packages/@react-enhanced/shared",
"@react-enhanced/translate": "link:packages/@react-enhanced/translate",
"@react-enhanced/types": "link:packages/@react-enhanced/types",
"@react-enhanced/utils": "link:packages/@react-enhanced/utils",
"@testing-library/react": "^14.0.0",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.11",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/web": "^0.0.99",
"@vitejs/plugin-react-swc": "^3.3.0",
"@vitest/coverage-istanbul": "^0.30.0",
"classnames": "^2.3.2",
"github-markdown-css": "^5.2.0",
"jsdom": "^21.1.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prism-react-renderer": "^1.3.5",
"qrcode": "^1.5.3",
"qrious": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qrcode": "link:packages/react-qrcode",
"react-qrious": "link:packages/react-qrious",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"remark-gfm": "^3.0.1",
"rimraf": "^4.4.1",
"rxjs": "^7.8.0",
"sanitize.css": "^13.0.0",
"sass": "^1.61.0",
"size-limit": "^8.2.4",
"size-limit-preset-node-lib": "^0.2.0",
"todomvc-app-css": "^2.4.2",
"type-coverage": "^2.25.0",
"type-fest": "^3.8.0",
"typescript": "5.0.4",
"undici": "^5.21.2",
"unplugin-auto-import": "^0.15.2",
"vite": "^4.2.1",
"vitest": "^0.30.0"
},
"size-limit": [
{
"path": "./packages/@react-enhanced/hooks/lib/index.js",
"limit": "150B"
},
{
"path": "./packages/@react-enhanced/translate/lib/index.js",
"limit": "125B"
},
{
"path": "./packages/@react-enhanced/shared/lib/index.js",
"limit": "100B"
},
{
"path": "./packages/@react-enhanced/types/lib/index.js",
"limit": "120B"
},
{
"path": "./packages/@react-enhanced/utils/lib/index.js",
"limit": "150B"
},
{
"path": "./packages/react-qrcode/lib/index.js",
"limit": "100B"
},
{
"path": "./packages/react-qrious/lib/index.js",
"limit": "100B"
}
],
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true
}
}