-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·107 lines (107 loc) · 3.38 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
{
"name": "@hi-ui/genuine-theme",
"version": "3.1.2",
"description": "Genuine theme for HIUI",
"main": "./es/index.js",
"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",
"compile": "cross-env NODE_ENV=production gulp",
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack --progress --profile --colors --config ./build/webpack.production.config.js",
"precommit": "lint-staged",
"start": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.config.js --hot --port=4203",
"pub-future": "npm publish --access public --tag future",
"pub": "npm publish --access public --tag latest",
"pub-next": "npm publish --access public --tag next"
},
"repository": {
"type": "git",
"url": "[email protected]:hiui-group/genuine-theme.git"
},
"keywords": [
"hiui",
"css",
"theme",
"layout",
"reset",
"typography"
],
"author": "HIUI <[email protected]>",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"history": "^4.9.0",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^4.3.1",
"react-router-config": "^4.4.0-beta.8",
"react-router-dom": "^4.2.2",
"react-transition-group": "^4.4.1",
"@hi-ui/core-css": "^3.0.0-alpha.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@hi-ui/hiui": "^3.0.0",
"autoprefixer": "^8.3.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^2.0.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"merge2": "^1.2.2",
"node-sass": "^4.12.0",
"postcss": "^7.0.17",
"postcss-loader": "^2.1.4",
"prettier": "^2.1.2",
"react-hot-loader": "^4.11.1",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^2.6.3",
"rucksack-css": "^1.0.2",
"run-sequence": "^2.2.1",
"sass-loader": "^7.0.1",
"standard": "^11.0.1",
"style-loader": "^0.21.0",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.8.0",
"terser-webpack-plugin": "^1.3.0",
"through2": "^2.0.5",
"url-loader": "^1.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --config .stylelintrc --fix",
"git add"
]
}
}