-
Notifications
You must be signed in to change notification settings - Fork 272
/
package.json
108 lines (108 loc) · 3.22 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
{
"private": true,
"version": "1.9.6",
"description": "All-In-One Remote Debugging Tool",
"homepage": "https://huolalatech.github.io/page-spy-web",
"repository": {
"type": "git",
"url": "git+https://github.com/HuolalaTech/page-spy-web.git"
},
"license": "MIT",
"scripts": {
"postinstall": "bash scripts/public-files.sh",
"start:doc": "vite --mode doc",
"start:client": "vite --mode client",
"start:server": "page-spy-api",
"build:doc": "vite build --mode doc",
"build:client": "vite build --mode client",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@mdx-js/rollup": "^3.0.1",
"@rrweb/types": "^2.0.0-alpha.11",
"@types/lodash-es": "^4.17.7",
"@types/mdx": "^2.0.4",
"@types/node": "^17.0.16",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-resizable": "^3.0.4",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.2",
"eslint": "^8.34.0",
"eslint-config-alloy": "^4.9.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"less": "^4.1.2",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"remark-gfm": "^4.0.0",
"typescript": "^5.3.3",
"vite": "^4.0.0",
"vite-plugin-svgr": "^2.4.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@huolala-tech/page-spy-browser": "^1.9.14",
"@huolala-tech/page-spy-plugin-data-harbor": "^1.3.12",
"@huolala-tech/page-spy-plugin-rrweb": "^1.2.8",
"@huolala-tech/page-spy-plugin-whole-bundle": "^0.0.10",
"@huolala-tech/page-spy-types": "^1.9.6",
"@huolala-tech/react-json-view": "^1.2.5",
"@huolala-tech/request": "^1.1.2",
"@mdx-js/mdx": "^3.0.1",
"acorn": "^8.11.3",
"ahooks": "^3.1.9",
"antd": "^5.18.3",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "1.11.7",
"error-stack-parser": "^2.1.4",
"fflate": "^0.8.1",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"immer": "^10.0.1",
"lodash-es": "^4.17.21",
"pretty-bytes": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.2.1",
"react-transition-group": "^4.4.5",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"remark-rehype": "^11.1.0",
"rrweb-player": "^1.0.0-alpha.4",
"shiki": "^0.14.3",
"source-map": "^0.7.4",
"unified": "^11.0.5",
"unist-util-visit": "^4.1.2",
"zustand": "^4.5.2"
},
"gitHooks": {
"pre-commit": "lint-staged && node ./scripts/check-i18n.mjs"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
],
"optionalDependencies": {
"@huolala-tech/page-spy-api": "^1.9.0"
}
}