-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·126 lines (126 loc) · 3.95 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
124
125
126
{
"name": "react-admin-muiltpage",
"version": "0.0.5",
"description": "React Admin TabsPage TypeScript",
"private": true,
"scripts": {
"precommit": "npm run lint-staged",
"start": "./node_modules/.bin/cross-env PORT=3000 ESLINT=none ./node_modules/.bin/roadhog dev",
"start:no-proxy": "./node_modules/.bin/cross-env NO_PROXY=true ESLINT=none ./node_modules/.bin/roadhog dev",
"build": "./node_modules/.bin/cross-env ESLINT=none ./node_modules/.bin/roadhog build",
"site": "roadhog-api-doc static && gh-pages -d dist",
"analyze": "./node_modules/.bin/cross-env ANALYZE=true ./node_modules/.bin/roadhog build",
"lint:style": "stylelint \"src/**/*.less\" --syntax less",
"lint": "eslint --ext .js src mock tests && npm run lint:style",
"lint:fix": "eslint --fix --ext .js src mock tests && npm run lint:style",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js",
"test": "./node_modules/.bin/roadhog test",
"test:component": "./node_modules/.bin/roadhog test ./src/components",
"test:all": "node ./tests/run-tests.js",
"prettier": "prettier --write ./src/**/**/**/*",
"jest": "jest"
},
"dependencies": {
"@antv/data-set": "0.8.0",
"@babel/polyfill": "7.0.0-beta.42",
"antd": "3.8.0",
"babel-runtime": "6.26.0",
"bizcharts": "3.1.3",
"bizcharts-plugin-slider": "2.0.1",
"classnames": "2.2.5",
"dva": "2.3.1",
"dva-loading": "^2.0.5",
"enquire-js": "0.2.1",
"less": "2.7.2",
"lodash": "4.17.5",
"lodash-decorators": "4.5.0",
"moment": "2.21.0",
"numeral": "2.0.6",
"omit.js": "1.0.0",
"path-to-regexp": "2.2.0",
"prop-types": "15.6.1",
"qs": "6.5.1",
"rc-drawer-menu": "0.5.6",
"react": "16.2.0",
"react-container-query": "0.9.1",
"react-datasheet": "^1.3.8",
"react-document-title": "2.0.3",
"react-dom": "16.2.0",
"react-fittext": "1.0.0",
"react-markdown": "^3.6.0",
"reqwest": "^2.0.5",
"rollbar": "2.3.9"
},
"devDependencies": {
"@babel/types": "^7.0.0",
"@types/antd": "^1.0.0",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"babel-eslint": "8.2.2",
"babel-plugin-dva-hmr": "0.4.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-plugin-import": "1.6.7",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "5.1.4",
"cross-port-killer": "1.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16.2": "^1.2.0",
"eslint": "4.19.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-compat": "2.2.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-plugin-react": "7.7.0",
"gh-pages": "1.1.0",
"husky": "0.14.3",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"jsdom": "^12.0.0",
"json-loader": "^0.5.7",
"lint-staged": "6.0.0",
"mockjs": "1.0.1-beta3",
"prettier": "1.11.1",
"pro-download": "1.0.1",
"redbox-react": "1.5.0",
"regenerator-runtime": "0.11.1",
"roadhog": "2.3.0",
"roadhog-api-doc": "1.0.2",
"sinon": "^6.2.0",
"stylelint": "8.4.0",
"stylelint-config-prettier": "3.0.4",
"stylelint-config-standard": "18.2.0",
"ts-loader": "^5.0.0",
"typescript": "^3.0.3",
"url-polyfill": "^1.1.0",
"yaml-loader": "^0.5.0"
},
"optionalDependencies": {
"puppeteer": "^1.1.1"
},
"lint-staged": {
"**/*.{js,jsx,less}": [
"prettier --write",
"git add"
],
"**/*.{js,jsx}": "lint-staged:js",
"**/*.less": "stylelint --syntax less"
},
"engines": {
"node": ">=8.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}