-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.46 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
123
{
"name": "cottage",
"version": "1.0.0",
"description": "eclogue webui",
"main": "index.js",
"scripts": {
"analyze": "cross-env ANALYZE=1 umi build",
"build": "umi build",
"lint:js": "eslint --ext .js src",
"lint:style": "stylelint \"src/**/*.less\" --syntax less",
"start": "umi dev",
"test": "cross-env BABELRC=none umi test",
"prettier": "prettier --write 'src/**/*.(js|less)'",
"precommit": "lint-staged",
"doc": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "https://github.com/eclogue/cottage"
},
"author": "superbogy",
"license": "MPL",
"dependencies": {
"ansi-regex": "^4.1.0",
"ant-design-draggable-modal": "0.0.13",
"ant-design-pro": "^2.1.1",
"antd": "^3.24.2",
"axios": "^0.19.0",
"babel-core": "7.0.0-bridge.0",
"classnames": "^2.2.6",
"codemirror": "^5.42.0",
"d3-shape": "^1.2.2",
"dayjs": "^1.8.12",
"draftjs-to-html": "^0.8.4",
"draftjs-to-markdown": "^0.5.1",
"dva-model-extend": "^0.1.2",
"echarts": "^4.2.0-rc.2",
"echarts-for-react": "^2.0.15-beta.0",
"echarts-gl": "^1.1.1",
"echarts-liquidfill": "^2.0.2",
"enquire-js": "^0.2.1",
"g2": "^2.3.13",
"g2-react": "^1.3.2",
"highcharts-exporting": "^0.1.7",
"highcharts-more": "^0.1.7",
"highlight.js": "^9.17.1",
"javascript-terminal": "^1.0.3",
"js-file-download": "^0.4.7",
"json-format": "^1.0.1",
"jsonp": "^0.2.1",
"lodash": "^4.17.11",
"lodash.clonedeep": "^4.5.0",
"md5": "^2.2.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^2.4.0",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"rc-steps": "^3.3.1",
"rc-tree": "^1.14.8",
"rc-tween-one": "^2.2.17",
"re-resizable": "^5.0.1",
"react-adsense": "^0.0.6",
"react-codemirror2": "^5.1.0",
"react-countup": "^4.2.2",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-draft-wysiwyg": "^1.12.13",
"react-helmet": "^5.2.0",
"react-highcharts": "^16.0.2",
"react-json-inspector": "^7.1.1",
"react-perfect-scrollbar": "^1.4.2",
"react-terminal-component": "^1.4.1",
"react-virtualized": "^9.21.2",
"recharts": "^1.3.6",
"socket.io-client": "^2.3.0",
"store": "^2.0.12",
"stringify-object": "^3.3.0",
"svg-sprite-loader": "^4.1.3",
"xterm": "^4.3.0",
"xterm-addon-attach": "^0.5.0",
"xterm-addon-fit": "^0.3.0",
"yaml": "^1.5.1",
"yargs-parser": "^16.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.10.0",
"babel-plugin-macros": "^2.4.2",
"babel-plugin-module-resolver": "^3.1.1",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^1.1.4",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^8.0.4",
"mockjs": "^1.0.1-beta3",
"module": "^1.2.5",
"prettier": "^1.15.2",
"stylelint": "^9.8.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.2.0",
"umi": "=2.8.9",
"umi-plugin-react": "=1.8.4"
},
"optionalDependencies": {
"puppeteer": "^1.10.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint --ext .js --fix",
"npm run prettier",
"git add"
],
"**/*.less": [
"git add"
]
}
}