-
-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
{
"name": "@reactuses/reactuses-monorepo",
"type": "module",
"packageManager": "[email protected]",
"license": "Unlicense",
"homepage": "https://www.reactuse.com/",
"repository": {
"type": "git",
"url": "https://github.com/childrentime/reactuse"
},
"bugs": {
"url": "https://github.com/childrentime/reactuse/issues"
},
"sideEffects": false,
"scripts": {
"newHook": "ts-node scripts/newHook.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "pnpm --filter website-docusaurus run dev",
"build": "pnpm --filter @reactuses/core run build",
"core:dev": "pnpm --filter core run dev",
"size": "tsx scripts/exportSize.mts"
},
"dependencies": {
"bunchee": "^4.4.8"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime-corejs3": "^7.26.0",
"@reactuses/core": "workspace:*",
"@ririd/eslint-config": "1.3.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.19.64",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "4.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"esno": "^4.8.0",
"export-size": "^0.5.2",
"fast-glob": "^3.3.2",
"filesize": "^8.0.7",
"fs-extra": "^10.1.0",
"lodash-es": "^4.17.21",
"markdown-table": "^3.0.4",
"prompts": "^2.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@babel/*",
"typescript",
"@types/react"
]
}
}
}