-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.74 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
{
"name": "Leetecho",
"version": "0.0.3",
"description": "Leetecho is a tool that automatically generates LeetCode solutions and notes and publishes them to a personal repository.",
"author": "CallanBi <mcbihv@126.com>",
"license": "MIT",
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "node scripts/build.mjs && electron-builder",
"win-build": "node scripts/build.mjs && electron-builder --win",
"lint": "eslint --fix --ext .ts,.tsx src",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"debug": "cross-env-shell NODE_ENV=debug \"node scripts/build.mjs && vite --config ./configs/vite.renderer.ts && vite ./src/renderer\""
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-form": "^1.55.1",
"@ant-design/pro-layout": "^6.33.0",
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/lang-markdown": "^0.19.6",
"@douyinfe/semi-icons": "^2.4.1",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@milkdown/core": "^5.5.0",
"@milkdown/plugin-clipboard": "^5.5.0",
"@milkdown/plugin-cursor": "^5.5.0",
"@milkdown/plugin-diagram": "^5.5.0",
"@milkdown/plugin-emoji": "^5.5.0",
"@milkdown/plugin-history": "^5.5.0",
"@milkdown/plugin-indent": "^5.5.0",
"@milkdown/plugin-listener": "^5.5.0",
"@milkdown/plugin-math": "^5.5.0",
"@milkdown/plugin-menu": "^5.5.0",
"@milkdown/plugin-prism": "^5.5.0",
"@milkdown/plugin-slash": "^5.5.0",
"@milkdown/plugin-tooltip": "^5.5.0",
"@milkdown/plugin-upload": "^5.5.0",
"@milkdown/preset-commonmark": "^5.5.0",
"@milkdown/preset-gfm": "^5.5.0",
"@milkdown/react": "^5.5.0",
"@milkdown/theme-nord": "^5.5.0",
"@types/chai": "^4.3.0",
"@types/he": "^1.1.2",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.0",
"@types/node-fetch": "^2.6.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.4",
"@types/request-promise-native": "^1.0.18",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitejs/plugin-react": "^1.0.7",
"ahooks": "^3.1.13",
"antd": "^4.18.5",
"cross-env": "^7.0.3",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-devtools-installer": "^3.2.0",
"electron-store": "^8.0.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"html-react-parser": "^1.4.8",
"less": "^4.1.2",
"less-loader": "^7.3.0",
"material-design-icons-iconfont": "^6.4.2",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loading-skeleton": "^3.0.3",
"react-query": "^3.34.16",
"react-router-dom": "5.2.0",
"react-transition-group": "^4.4.2",
"react-viewer": "^3.2.2",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "^4.4.4",
"vite": "^2.6.13",
"vite-plugin-svgr": "^1.0.1"
},
"env": {
"//": "Used in build scripts",
"HOST": "127.0.0.1",
"PORT": 3344
},
"dependencies": {
"await-to-js": "^3.0.0",
"chai": "^4.3.6",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"handlebar": "^1.0.0",
"he": "^1.2.0",
"import": "^0.0.6",
"isomorphic-git": "^1.17.2",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"vite-plugin-markdown": "^2.0.2"
}
}