-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.57 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:next": "next lint",
"export": "next export",
"eslint": "eslint src",
"stylelint": "stylelint src/**/*.{css,less,scss}",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "eslint src --fix && stylelint src/**/*.{css,less,scss} --fix",
"prettier": "prettier --write src",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/cssinjs": "^1.20.0",
"@ant-design/icons": "^5.3.7",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@hankliu/rc-exception": "^0.0.2",
"@hankliu/rc-footer": "^0.0.5",
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"@next/font": "^14.2.3",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@uiw/react-markdown-preview": "^5.1.1",
"@uiw/react-md-editor": "^4.0.4",
"antd": "^5.17.0",
"aos": "^3.0.0-beta.6",
"classnames": "^2.5.1",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"diff": "^5.2.0",
"diff2html": "^3.4.48",
"eslint": "9.2.0",
"eslint-config-next": "14.2.3",
"h2m": "^0.7.0",
"highlight.js": "^11.9.0",
"html-to-md": "^0.8.5",
"html2markdown": "^1.1.0",
"is-mobile": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"js-yaml": "^4.1.0",
"json_typegen_wasm": "^0.7.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.48.0",
"next": "14.2.3",
"next-remove-imports": "^1.0.12",
"nprogress": "^0.2.0",
"octokit": "^4.0.2",
"odd.player.js": "^2.3.20",
"prettier-plugin-java": "^2.6.0",
"prettier-plugin-rust": "^0.1.9",
"qrcode": "^1.5.3",
"qrcode-parser": "^2.1.3",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.5.0",
"react-inlinesvg": "^4.1.3",
"react-lazyload": "^3.2.1",
"react-split-pane": "^2.0.3",
"react-waypoint": "^10.3.0",
"sql-formatter": "^15.3.1",
"swr": "^2.2.5",
"turndown": "^7.1.3",
"turndown-plugin-gfm": "^1.0.2",
"typescript": "5.4.5",
"uuid": "^9.0.1",
"video.js": "^8.12.0",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/aos": "^3.0.7",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"autoprefixer": "^10.4.19",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"next-transpile-modules": "^10.0.1",
"p-queue": "^8.0.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.77.0",
"stylelint": "^16.4.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.3",
"tailwindcss-textshadow": "^2.1.3",
"worker-loader": "^3.0.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}