forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
222 lines (222 loc) · 8.54 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"name": "material-ui",
"private": true,
"author": "Material-UI Team",
"version": "1.0.0-beta.40",
"description": "React components that implement Google's Material Design.",
"main": "./src/index.js",
"keywords": [
"react",
"react-component",
"material design",
"material-ui"
],
"repository": {
"type": "git",
"url": "https://github.com/mui-org/material-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui-org/material-ui/issues"
},
"homepage": "http://material-ui.com/",
"scripts": {
"start": "yarn docs:dev",
"docs:dev": "rimraf node_modules/.cache/babel-loader && cross-env BABEL_ENV=docs-development next dev",
"docs:api": "yarn docs:api:core && yarn docs:api:lab",
"docs:api:core": "rimraf ./pages/api && cross-env BABEL_ENV=docs-production && babel-node ./docs/scripts/buildApi.js ./src ./pages/api",
"docs:api:lab": "rimraf ./pages/lab/api && cross-env BABEL_ENV=docs-production babel-node ./docs/scripts/buildApi.js ./packages/material-ui-lab/src ./pages/lab/api",
"docs:icons": "rimraf static/icons/* && babel-node ./docs/scripts/buildIcons.js",
"docs:build": "cross-env NODE_ENV=production BABEL_ENV=docs-production next build",
"docs:start": "next start",
"docs:export": "next export -o docs/export && yarn docs:build-sw",
"docs:deploy": "yarn docs:build && yarn docs:export && firebase deploy",
"docs:size-why": "DOCS_STATS_ENABLED=true yarn docs:build",
"docs:build-sw": "babel-node ./docs/scripts/buildServiceWorker.js",
"lint": "eslint . --cache && echo \"eslint: no lint errors\"",
"prettier": "find . -name \"*.js\" -o -name \"*.d.ts\" -o -name \"*.tsx\" | grep -v -f .eslintignore | xargs prettier --write",
"size": "size-limit",
"size:why": "size-limit --why build/index.js",
"size:overhead:why": "size-limit --why ./test/size/overhead.js",
"spellcheck": "eslint . --config .eslintrc.spellcheck.js && echo \"eslint: no lint errors\"",
"test": "yarn lint && yarn flow && yarn typescript && yarn test:unit",
"test:unit": "cross-env NODE_ENV=test mocha test/**/*.test.js src/{,**/}*.test.js docs/src/**/*.test.js",
"test:watch": "yarn test:unit --watch",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha test/**/*.test.js src/{,**/}*.test.js && nyc report -r lcovonly",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha test/**/*.test.js src/{,**/}*.test.js && nyc report --reporter=html",
"test:karma": "cross-env NODE_ENV=test karma start test/karma.conf.js --single-run",
"test:regressions": "webpack --config test/regressions/webpack.config.js && rimraf test/regressions/screenshots/chrome/* && vrtest run --config test/vrtest.config.js --record",
"typescript": "tsc -p tsconfig.json",
"flow": "flow --show-all-errors",
"argos": "argos upload test/regressions/screenshots/chrome --token $ARGOS_TOKEN || true",
"prebuild": "rimraf build",
"build:es2015": "cross-env NODE_ENV=production babel ./src --ignore *.test.js --out-dir ./build",
"build:es2015modules": "cross-env NODE_ENV=production BABEL_ENV=modules babel ./src/index.js --out-file ./build/index.es.js",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --ignore *.test.js --out-dir ./build/es",
"build:umd:dev": "webpack --config scripts/umd.webpack.config.js",
"build:umd:prod": "cross-env NODE_ENV=production webpack --config scripts/umd.webpack.config.js",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"build": "yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:umd:dev && yarn build:umd:prod && yarn build:copy-files",
"version": "yarn build",
"release": "np --no-publish --any-branch",
"postrelease": "yarn docs:deploy && npm publish build --tag next",
"monorepo:release": "yarn lerna exec yarn build && ./node_modules/.bin/lerna publish --skip-npm"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"dependencies": {
"@types/jss": "^9.3.0",
"@types/react-transition-group": "^2.0.6",
"babel-runtime": "^6.26.0",
"brcast": "^3.0.1",
"classnames": "^2.2.5",
"deepmerge": "^2.0.1",
"dom-helpers": "^3.2.1",
"hoist-non-react-statics": "^2.5.0",
"jss": "^9.3.3",
"jss-camel-case": "^6.0.0",
"jss-default-unit": "^8.0.2",
"jss-global": "^3.0.0",
"jss-nested": "^6.0.1",
"jss-props-sort": "^6.0.0",
"jss-vendor-prefixer": "^7.0.0",
"keycode": "^2.1.9",
"lodash": "^4.2.0",
"normalize-scroll-left": "^0.1.2",
"prop-types": "^15.6.0",
"react-event-listener": "^0.5.1",
"react-jss": "^8.1.0",
"react-lifecycles-compat": "^1.0.2",
"react-popper": "^0.8.0",
"react-scrollbar-size": "^2.0.2",
"react-transition-group": "^2.2.1",
"recompose": "^0.26.0",
"scroll": "^2.0.3",
"warning": "^3.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.4",
"@types/react": "16.3.4",
"app-module-path": "^2.2.0",
"argos-cli": "^0.0.9",
"autoprefixer": "^8.0.0",
"autosuggest-highlight": "^3.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-preval": "^1.6.2",
"babel-plugin-react-remove-properties": "^0.2.5",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"clipboard-copy": "^2.0.0",
"cross-env": "^5.1.1",
"cssnano": "^3.10.0",
"doctrine": "^2.0.0",
"downshift": "^1.22.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-material-ui": "file:packages/eslint-plugin-material-ui",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-spellcheck": "^0.0.10",
"eventsource-polyfill": "^0.9.6",
"fg-loadcss": "^2.0.1",
"file-loader": "^1.1.5",
"flow-bin": "0.62.0",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.2.3",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"gm": "^1.23.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.3.0",
"json-loader": "^0.5.7",
"jss-rtl": "^0.2.1",
"karma": "^2.0.0",
"karma-browserstack-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lerna": "^2.9.0",
"lz-string": "^1.4.4",
"mocha": "^5.0.0",
"next": "^5.0.1-canary.7",
"nyc": "^11.3.0",
"phantomjs-prebuilt": "^2.1.16",
"postcss": "^6.0.16",
"prettier": "^1.8.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-autosuggest": "^9.3.2",
"react-docgen": "^3.0.0-beta10",
"react-dom": "^16.2.0",
"react-inspector": "^2.2.2",
"react-number-format": "^3.0.2",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^1.2.1",
"react-swipeable-views": "^0.12.10",
"react-test-renderer": "^16.1.1",
"react-text-mask": "^5.0.2",
"recast": "^0.14.4",
"recursive-readdir-sync": "^1.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"rimraf": "^2.6.2",
"sinon": "^4.1.2",
"size-limit": "0.14.1",
"typescript": "^2.6.1",
"url-loader": "^1.0.1",
"vrtest": "^0.2.0",
"webfontloader": "^1.6.28",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"workbox-build": "^3.0.1"
},
"resolutions": {
"@types/react": "16.3.4"
},
"sideEffects": false,
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.test.js"
],
"sourceMap": false,
"instrument": false
},
"engines": {
"node": ">=6.11.0"
},
"workspaces": [
"packages/*"
]
}