-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.46 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
{
"name": "react-component-analyzer",
"version": "1.0.53",
"description": "Analyze the component tree of react and displays it as a diagram in the browser. You can refer to the corresponding code from the diagram.",
"main": "cli.js",
"scripts": {
"build": "rimraf dist && node -r esbuild-register ./tools/build.ts && npm run sample",
"watch": "rimraf dist && node -r esbuild-register ./tools/watch.ts",
"eslint": "eslint '**/*.{js,jsx,ts,tsx}' --ignore-path .gitignore",
"prettier": "prettier . --write --ignore-path .gitignore",
"prepare": "husky install",
"sample": "node ./dist/cli.js ../bulletproof-react/src/index.tsx",
"lint-staged": "lint-staged"
},
"bin": {
"rca": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/activeguild/react-component-analyzer.git"
},
"keywords": [
"typescript",
"react",
"component",
"tree",
"diagram",
"visualize",
"analyze"
],
"author": "j1ngzoue",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeguild/react-component-analyzer/issues"
},
"homepage": "https://github.com/activeguild/react-component-analyzer#readme",
"engines": {
"node": "^16.14.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@ubie/ubie-icons": "^0.4.0",
"@vanilla-extract/css": "^1.9.2",
"@vanilla-extract/esbuild-plugin": "^2.2.0",
"beautiful-react-diagrams": "^0.5.1",
"boring-avatars": "^1.7.0",
"classnames": "^2.3.2",
"esbuild": "^0.16.17",
"esbuild-loader": "^2.21.0",
"esbuild-plugin-prismjs": "^1.0.8",
"esbuild-register": "^3.4.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"fuse.js": "^6.6.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"modern-css-reset": "^1.4.0",
"prettier": "^2.8.2",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tooltip": "^5.5.1",
"rimraf": "^4.0.4",
"typescript": "^4.9.4"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.48.1",
"commander": "^9.5.0",
"picocolors": "^1.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npx eslint . --fix --ignore-path .gitignore",
"npx prettier --write . --ignore-path .gitignore"
]
}
}