-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
122 lines (122 loc) · 3.89 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
118
119
120
121
122
{
"name": "react-template",
"version": "1.0.0",
"description": "一个后台管理模版",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config webpack/webpack.dev.ts",
"test": "cross-env NODE_ENV=test webpack serve --config webpack/webpack.dev.ts",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.ts",
"lint:style": "stylelint \"src/**/**/*.less\" --syntax less",
"lint:style-fix": "stylelint \"src/**/**/*.less\" --syntax less --fix",
"lint-fix": "eslint src --fix --ext .ts,.tsx",
"lint": "eslint src --ext .ts,.tsx",
"push": "./push.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint src --fix --ext .ts,.tsx"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guo-jianqiang/smile-blog.git"
},
"keywords": [
"react",
"typescript"
],
"author": "郭建强",
"license": "ISC",
"bugs": {
"url": "https://github.com/guo-jianqiang/smile-blog/issues"
},
"homepage": "https://github.com/guo-jianqiang/smile-blog#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@types/classnames": "^2.2.11",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.0",
"@types/react-loadable": "^5.5.4",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/webpack": "^4.41.25",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"antd-theme-webpack-plugin": "^1.3.7",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.8",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.7",
"less-loader": "^7.2.1",
"lint-staged": "^10.5.3",
"mini-css-extract-plugin": "^1.3.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-safe-parser": "^5.0.2",
"prettier": "^2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"stylelint": "^13.8.0",
"text-transform-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"typescript-plugin-css-modules": "^3.0.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3"
},
"dependencies": {
"@rainbow_deer/dialog": "^0.1.7",
"@rainbow_deer/layout": "^0.1.6",
"antd": "^4.16.2",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"common-tree-func": "^1.0.3",
"history": "4.10.1",
"js-base64": "^3.6.0",
"npm": "^7.6.3",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-input-color": "4.0.0",
"react-loadable": "5.5.0",
"react-markdown": "5.0.3",
"react-router-cache-route": "1.11.0",
"react-router-dom": "5.2.0",
"react-syntax-highlighter": "15.4.3"
}
}