-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "md-editor",
"private": true,
"version": "0.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "pnpm lint:code && pnpm lint:style",
"lint:code": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./",
"lint:style": "stylelint \"./**/*.{css,less}\" --fix"
},
"dependencies": {
"antd": "^4.23.4",
"highlight.js": "^11.6.0",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-textual-uml": "^0.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-imp": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.7.23",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.0",
"stylelint": "^15.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^30.0.1",
"stylelint-less": "^1.0.6",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-eslint": "^1.8.1"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"pnpm lint:code"
],
"*.{less,css}": [
"pnpm lint:style"
]
}
}