-
-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
110 lines (110 loc) · 3.36 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
{
"name": "reactspa",
"description": "combination of react teconology stack",
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"predeploy": "node scripts/build.js",
"deploy": "gh-pages -d build",
"lint": "eslint src --fix",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\"",
"format": "npm run prettier -- --write",
"validate": "npm run lint && npm run prettier -- --list-different"
},
"author": "muyunyun",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx|graphql|vue)": [
"prettier --write",
"git add"
]
},
"dependencies": {
"antd": "^3.9.3",
"daform": "^0.1.1",
"diana": "0.5.1",
"draftjs-to-html": "^0.7.2",
"draftjs-to-markdown": "^0.4.2",
"fetch-jsonp": "^1.0.6",
"history": "^4.7.2",
"less": "^2.7.2",
"less-loader": "^4.1.x",
"moment": "^2.18.1",
"photoswipe": "^4.1.2",
"prop-types": "^15.6.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-draft-wysiwyg": "^1.10.0",
"react-hot-loader": "^4.8.2",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.6.0",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"screenfull": "^3.3.2"
},
"devDependencies": {
"analyze-webpack-plugin": "^0.2.5",
"autoprefixer": "7.1.2",
"babel-core": "6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "7.1.2",
"babel-plugin-import": "^1.1.1",
"babel-plugin-on-demand-loading": "^0.0.9",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "^2.3.2",
"commitlint": "^7.5.2",
"connect-history-api-fallback": "1.3.0",
"cross-spawn": "4.0.2",
"css-loader": "v1.0.0",
"detect-port": "1.1.0",
"dotenv": "4.0.0",
"echarts": "^3.6.1",
"echarts-for-react": "^1.4.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"fs-extra": "3.0.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "0.17.3",
"husky": "^2.2.0",
"json-loader": "0.5.4",
"lint-staged": "^8.1.6",
"mini-css-extract-plugin": "^0.4.0",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.6",
"prettier": "^1.17.0",
"react-dev-utils": "^5.0.0",
"react-error-overlay": "^1.0.10",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"style-loader": "0.18.2",
"sw-precache-webpack-plugin": "0.11.5",
"url-loader": "0.5.9",
"webpack": "^4.20.2",
"webpack-cli": "^2.0.6",
"webpack-dev-server": "^3.1.11",
"webpack-manifest-plugin": "2.0.0-rc.2"
}
}