-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.68 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
{
"name": "type-challenges-site",
"version": "1.0.0",
"author": {
"name": "ZLY201",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"reset": "rm -rf node_modules",
"setup": "yarn reset && yarn",
"clean": "rm -rf dist",
"dev": "rspack serve --config=tools/rspack.config.ts --watch",
"build:ssr": "rspack build --config=tools/rspack.ssr.config.ts",
"build": "yarn clean && yarn build:ssr && rspack build --config=tools/rspack.config.ts && rm -rf dist/ssr",
"lint": "eslint --fix --color --cache --quiet .",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"yarn lint"
]
},
"engines": {
"node": ">= 16"
},
"browserslist": [
"> 0.2%",
"not dead",
"not op_mini all"
],
"sideEffects": [
"*.less"
],
"dependencies": {
"@arco-design/web-react": "^2.53.2",
"@monaco-editor/react": "^4.6.0",
"@type-challenges/utils": "^0.1.1",
"axios": "^1.5.1",
"dayjs": "^1.11.10",
"event-emitter": "^0.3.5",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-markdown": "^7.1.2",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^6.0.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"remark-math": "^6.0.0",
"ts-deepmerge": "^7.0.0",
"type-assertions": "^1.1.0"
},
"devDependencies": {
"@rspack/cli": "^0.6.5",
"@rspack/core": "^0.6.5",
"@rspack/plugin-html": "^0.5.8",
"@types/event-emitter": "^0.3.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.8.9",
"@types/react": "^17.0.67",
"@types/react-copy-to-clipboard": "^5.0.6",
"@types/react-dom": "^17.0.21",
"@types/react-syntax-highlighter": "^15.5.9",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"browserslist": "^4.22.1",
"commitlint": "^17.7.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^14.0.1",
"monaco-editor": "^0.44.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"resolutions": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@types/react": "^17.0.67",
"@types/react-dom": "^17.0.21"
}
}