-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.04 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
{
"name": "render-server",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --config './config/webpack.config.js' --mode development",
"build": "cross-env BUILD_ENV=VERSION node --max-old-space-size=2000 node_modules/.bin/webpack --config './config/webpack.config.js' --mode production --progress && npm run tar",
"build-cdn": "cross-env BUILD_ENV=CDN webpack --config './config/webpack.config.js' --mode production --progress && npm run tar",
"test": "eslint --ext .js,.ts,.jsx,.tsx ./src",
"fix": "eslint --ext .js,.ts,.jsx,.tsx ./src --fix",
"tar": "node ./scripts/tar.js",
"build-mock": "node ./scripts/build-mock.js "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"colors": "^1.4.0",
"copy-webpack-plugin": "^8.1.1",
"core-js": "^3.11.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"less": "^4.1.1",
"less-loader": "^8.1.1",
"mini-css-extract-plugin": "^1.5.0",
"mobx-react-lite": "^3.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"portfinder": "^1.0.28",
"prettier": "^2.2.1",
"react-dev-utils": "^11.0.4",
"react-refresh": "^0.10.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"svg-sprite-loader": "^5.2.1",
"svgo-loader": "^2.2.2",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@uiw/react-markdown-editor": "^3.1.3",
"antd": "^4.15.2",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"codemirror": "^5.61.1",
"copy-to-clipboard": "^3.3.1",
"lodash": "^4.17.21",
"markdown-navbar": "^1.4.3",
"md5": "^2.3.0",
"mobx": "^6.2.0",
"mobx-react": "^7.1.0",
"moment": "^2.29.1",
"natty-storage": "^2.3.0",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.2",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3"
}
}