-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.31 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": "laya-blog",
"version": "1.0.0",
"description": "a react blog project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config build/webpack.prod.conf.js",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js"
},
"author": "laya",
"license": "ISC",
"devDependencies": {
"antd": "^3.26.20",
"autoprefixer": "^9.4.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.11.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.0.1",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-router-dom": "^4.3.1",
"redux-logger": "^3.0.6",
"sass": "^1.49.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylus-loader": "^3.0.2",
"url-loader": "^1.1.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@uiw/react-md-editor": "^3.17.2",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"draft-js": "^0.10.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"highlight.js": "^9.15.6",
"qrcode.react": "^0.9.3",
"qs": "^6.10.3",
"rc-tween-one": "^2.3.4",
"react": "^18.0.0",
"react-avatar-editor": "^11.0.4",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.0.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"showdown": "^2.1.0"
},
"proxy": {
"/api": {
"target": "http://localhost:2000",
"changeOrigin": true
}
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"import",
{
"libraryName": "antd",
"style": "css"
}
]
]
},
"browserslist": [
"> 1%",
"last 5 versions"
]
}