forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
178 lines (178 loc) · 6.95 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
{
"name": "material-ui-workspace",
"private": true,
"author": "Material-UI Team",
"version": "1.1.0",
"description": "Material-UI's workspace package",
"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-development && babel-node ./docs/scripts/buildApi.js ./packages/material-ui/src ./pages/api",
"docs:api:lab": "rimraf ./pages/lab/api && cross-env BABEL_ENV=docs-development 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 && cp docs/_headers docs/export/_headers && cp docs/_redirects docs/export/_redirects",
"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 packages/material-ui/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 packages/material-ui/test/**/*.test.js packages/material-ui/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 packages/material-ui/test/**/*.test.js packages/material-ui/src/{,**/}*.test.js && nyc report -r lcovonly",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha packages/material-ui/test/**/*.test.js packages/material-ui/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",
"monorepo:release": "yarn lerna exec yarn build && ./node_modules/.bin/lerna publish --skip-npm"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.0.0-beta.42",
"@babel/core": "7.0.0-beta.42",
"@babel/node": "7.0.0-beta.42",
"@babel/plugin-transform-object-assign": "7.0.0-beta.42",
"@babel/plugin-transform-runtime": "7.0.0-beta.42",
"@babel/preset-env": "7.0.0-beta.42",
"@babel/preset-flow": "7.0.0-beta.42",
"@babel/preset-react": "7.0.0-beta.42",
"@babel/preset-stage-1": "7.0.0-beta.42",
"@babel/register": "7.0.0-beta.42",
"@types/enzyme": "^3.1.4",
"@types/react": "^16.3.14",
"argos-cli": "^0.0.9",
"autoprefixer": "^8.0.0",
"autosuggest-highlight": "^3.1.1",
"babel-eslint": "^8.2.2",
"babel-loader": "8.0.0-beta.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-preval": "^1.6.4",
"babel-plugin-react-remove-properties": "^0.2.5",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"chai": "^4.1.2",
"clean-css": "^4.1.11",
"clipboard-copy": "^2.0.0",
"cross-env": "^5.1.1",
"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.10.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",
"fg-loadcss": "^2.0.1",
"file-loader": "^1.1.5",
"flow-bin": "0.62.0",
"flow-typed": "^2.2.3",
"fs-extra": "^6.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": "^6.0.1",
"nyc": "^11.3.0",
"postcss": "^6.0.16",
"prettier": "^1.8.2",
"raw-loader": "^0.5.1",
"react": "16.3.0",
"react-autosuggest": "^9.3.2",
"react-docgen": "^3.0.0-beta10",
"react-dom": "16.3.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",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-size-snapshot": "^0.5.1",
"rollup-plugin-uglify": "^4.0.0",
"sinon": "^5.0.3",
"size-limit": "^0.18.0",
"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"
},
"sideEffects": false,
"nyc": {
"include": [
"packages/material-ui/src/**/*.js"
],
"exclude": [
"**/*.test.js"
],
"sourceMap": false,
"instrument": false
},
"engines": {
"node": ">=8.0.0"
},
"workspaces": [
"packages/*"
]
}