-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.35 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
{
"name": "HiATMP-Base",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"author": "",
"license": "ISC",
"private": true,
"scripts": {
"precommit": "npm run lint-staged",
"start": "cross-env PORT=8003 roadhog dev",
"start:no-proxy": "cross-env NO_PROXY=true ESLINT=none roadhog dev",
"build": "cross-env ESLINT=none roadhog build",
"lint:style": "stylelint \"src/**/*.less\" --syntax less",
"lint": "eslint --ext .js src && npm run lint:style",
"lint:fix": "eslint --fix --ext .js src && npm run lint:style",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js",
"prettier": "prettier --write ./src/**/**/**/*",
"pre-start": "./scripts/bin/let copy && npm run start "
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@material-ui/core": "1.4.0",
"@material-ui/icons": "1.1.0",
"antd": "^3.7.0",
"antd-pro-merge-less": "^0.0.1",
"classnames": "^2.2.6",
"dva": "^2.3.1",
"dva-loading": "^2.0.3",
"echarts": "^4.0.4",
"echarts-for-react": "^2.0.8",
"enquire-js": "^0.2.1",
"immutability-helper": "^2.7.1",
"immutability-helper-x": "^1.0.5",
"jquery": "^3.3.1",
"js-sha512": "^0.7.1",
"lodash": "^4.17.4",
"lodash-decorators": "^4.4.1",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.19.1",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"rc-drawer": "^1.5.2",
"rc-queue-anim": "^1.4.1",
"react": "^16.2.0",
"react-datepicker": "^2.5.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-document-title": "^2.0.3",
"react-dom": "^16.2.0",
"react-draggable": "^3.0.5",
"react-fittext": "^1.0.0",
"react-loadable": "^5.4.0",
"react-rnd": "^8.0.2",
"react-sortable-hoc": "^0.6.8",
"react-swipeable-views": "^0.12.15",
"react-virtualized": "^9.18.5",
"react-virtualized-select": "^3.1.3",
"url-polyfill": "^1.0.10"
},
"devDependencies": {
"@types/react": "^16.4.4",
"@types/react-dom": "^16.0.6",
"antd-theme-webpack-plugin": "^1.1.6",
"babel-eslint": "^8.1.2",
"babel-plugin-dva-hmr": "^0.4.1",
"babel-plugin-import": "^1.8.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-runtime": "^6.9.2",
"cross-env": "^5.1.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"hidpi-canvas": "^1.0.10",
"husky": "^0.14.3",
"less-vars-to-js": "^1.1.2",
"lint-staged": "^7.2.0",
"mockjs": "^1.0.1-beta3",
"prettier": "^1.13.7",
"redbox-react": "^1.3.2",
"roadhog": "^2.5.0-beta.4",
"roadhog-api-doc": "^1.1.0",
"stylelint": "^9.2.1",
"stylelint-config-prettier": "^3.0.4",
"stylelint-config-standard": "^18.0.0"
},
"lint-staged": {
"**/*.{js,jsx,less}": [
"prettier --write",
"git add"
],
"**/*.{js,jsx}": "npm run lint-staged:js",
"**/*.less": "stylelint --syntax less"
},
"engines": {
"node": ">=8.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}