-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "hiui-template",
"version": "0.2.0",
"description": "HIUI Template",
"scripts": {
"test": "node_modules/.bin/standard && node_modules/.bin/stylelint --config .stylelintrc 'src/**/*.scss'",
"fix": "node_modules/.bin/standard --fix && node_modules/.bin/stylelint --config .stylelintrc 'src/**/*.scss' --fix",
"eject": "react-scripts eject",
"build": "react-scripts build",
"deploy": "gh-pages -d build --git \"$(which git)\"",
"start": "react-scripts start",
"precommit": "lint-staged"
},
"author": "HIUI <[email protected]>",
"license": "MIT",
"homepage": "http://hiui-group.github.io/hiui/templates-preview/",
"dependencies": {
"@hi-ui/classic-theme": "^3.2.3",
"@hi-ui/component-kit": "^0.5.5",
"@hi-ui/core-css": "^2.0.1",
"@hi-ui/hiui": "^3.4.0",
"axios": "^0.18.1",
"classnames": "^2.2.5",
"echarts": "^4.2.1",
"echarts-for-react": "^2.0.15-beta.0",
"lodash": "^4.17.20",
"node-sass": "^4.12.0",
"postcss-loader": "^2.1.5",
"react": "^16.8.6",
"react-beautiful-dnd": "^13.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-syntax-highlighter": "^10.3.0"
},
"devDependencies": {
"babel-eslint": "~10.1.0",
"eslint": "~7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "~16.0.1",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-react": "~7.21.5",
"eslint-plugin-react-hooks": "~4.2.0",
"eslint-plugin-standard": "~4.0.2",
"gh-pages": "^2.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^2.2.1",
"react-scripts": "~4.0.0",
"standard": "^12.0.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.8.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}