-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.83 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
{
"name": "rc-roui",
"version": "0.0.2",
"description": "rouui 是一个学习组件库",
"main": "lib/index.js",
"typings": "es/index.d.ts",
"module": "es/index.js",
"directories": {
"lib": "lib/"
},
"scripts": {
"sb": "yarn storybook",
"format": "prettier --write \"{src,test}/**/*.{tsx,ts,js}\"",
"format:docs": "prettier --write \"docs/**/*.{tsx,ts,md}\"",
"format:style": "stylelint \"src/**/*.scss\" --fix",
"format:check": "prettier --list-different \"{src,test}/**/*.{tsx,ts,js}\"",
"dist": "yarn dist:dev && yarn dist:pro",
"dist:style": "gulp buildStyle",
"dist:dev": "cross-env NODE_ENV=development webpack --progress",
"dist:pro": "webpack --mode production --progress",
"dist:analyze": "ANALYZE=true webpack --mode production --progress",
"lint:style": "stylelint \"src/**/*.scss\"",
"lint:ts": "eslint --ext tsx --ext ts src && tsc --noEmit",
"lint:js": "eslint --ext js src",
"lint": "yarn lint:ts && yarn lint:js && yarn lint:style",
"build": "yarn build:gulp && yarn dist && yarn build:types",
"build:gulp": "gulp build",
"build:types": "npx tsc --emitDeclarationOnly --outDir lib && npx tsc --emitDeclarationOnly --outDir es",
"build:docs": "yarn build --prefix docs",
"storybook": "start-storybook -p 9001",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"component",
"react-component",
"ui-component"
],
"license": "MIT",
"author": "dmwin72015",
"repository": {
"type": "git",
"url": "[email protected]:dmwin72015/roui.git"
},
"browserslist": [
"> 0.1%",
"last 2 versions",
"ie >= 10"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint"
}
},
"dependencies": {
"classnames": "^2.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.4"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-storysource": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.2.9",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"autoprefixer": "9.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"cssnano": "^5.0.2",
"del": "^6.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.7",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-rtlcss": "^1.4.2",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^6.0.0",
"lodash-webpack-plugin": "^0.11.6",
"postcss": "^8.2.15",
"prettier": "^2.3.0",
"sass-loader": "10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"ts-loader": "^9.1.2",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0"
}
}