forked from rsuite/rsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
181 lines (181 loc) · 5.59 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "rsuite",
"version": "4.8.0",
"description": "A suite of react components",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"module": "es/index.js",
"directories": {
"lib": "lib/"
},
"scripts": {
"format": "prettier --write \"{src,test}/**/*.{tsx,ts,js}\"",
"format:docs": "prettier --write \"docs/**/*.{tsx,ts,md}\"",
"format:style": "stylelint \"src/**/*.less\" --fix",
"format:check": "prettier --list-different \"{src,test}/**/*.{tsx,ts,js}\"",
"dist": "npm run dist:dev && npm run dist:pro",
"dist:style": "gulp buildStyle",
"dist:dev": "cross-env NODE_ENV=development webpack --mode development --progress",
"dist:pro": "webpack --mode production --progress",
"build": "npm run build:gulp && npm run dist",
"build:gulp": "gulp build",
"build:types": "npx tsc --emitDeclarationOnly --outDir lib",
"dev": "cross-env NODE_ENV=development gulp dev",
"lint": "npm run lint:ts && npm run lint:style",
"lint:style": "stylelint \"src/**/*.less\"",
"lint:ts": "eslint src/**/*.{ts,tsx}",
"lint:js": "eslint src/**/*.js",
"tdd": "cross-env RUN_ENV=test karma start",
"test": "npm run format:check && npm run lint && npm run test:component && npm run test:styles",
"test:component": "cross-env NODE_ENV=coverage RUN_ENV=test karma start --single-run",
"test:styles": "node test/stylesSpec.js",
"coveralls": "cat ./coverage/lcov/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"rsuite",
"component",
"react-component"
],
"author": "HYPERS Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:rsuite/rsuite.git"
},
"files": [
"CHANGELOG.md",
"README.md",
"dist",
"lib",
"types",
"es",
"styles"
],
"dependencies": {
"@babel/runtime": "^7.8.4",
"classnames": ">=2.0.0",
"date-fns": "^2.13.0",
"date-fns-timezone": "^0.1.4",
"dom-lib": "^1.2.1",
"element-resize-event": "^3.0.3",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4",
"react-virtualized": "^9.21.0",
"recompose": "^0.30.0",
"rsuite-table": "^3.13.1",
"schema-typed": "^1.5.1"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-proto-to-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs2": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/classnames": "^2.2.8",
"@types/lodash": "^4.14.134",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-virtualized": "^9.21.10",
"@types/recompose": "^0.30.6",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"autoprefixer": "^8.3.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-dev": "^2.0.1",
"brfs": "^1.6.1",
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"cross-env": "^6.0.3",
"css-loader": "^0.28.11",
"cssnano": "^4.1.10",
"del": "^3.0.0",
"dtslint": "^0.3.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.0.8",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^4.0.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-rtlcss": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"husky": "^4.2.5",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-es5-shim": "^0.0.4",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.6",
"less-loader": "^4.1.0",
"lodash-webpack-plugin": "^0.11.5",
"make-dir": "^1.3.0",
"mocha": "^2.5.3",
"prettier": "^2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sinon": "^2.3.8",
"sinon-chai": "^2.12.0",
"style-loader": "^0.20.3",
"stylelint": "9.2.0",
"stylelint-config-standard": "^18.2.0",
"tinycolor2": "^1.4.1",
"typescript": "^3.9.7",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 10"
],
"sideEffects": [
"lib/**/styles/*",
"es/**/styles/*",
"dist/*",
"*.less",
"*.css"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}