forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 6.18 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
{
"version": "4.2.1",
"private": true,
"scripts": {
"deduplicate": "node scripts/deduplicate.js",
"argos": "argos upload test/regressions/screenshots/chrome --token $ARGOS_TOKEN",
"docs:api": "rimraf ./docs/pages/api && cross-env BABEL_ENV=test babel-node ./docs/scripts/buildApi.js ./packages/material-ui/src ./docs/pages/api && cross-env BABEL_ENV=test babel-node ./docs/scripts/buildApi.js ./packages/material-ui-lab/src ./docs/pages/api",
"docs:build": "yarn workspace docs build",
"docs:build-sw": "yarn workspace docs build-sw",
"docs:deploy": "yarn workspace docs deploy",
"docs:dev": "yarn workspace docs dev",
"docs:export": "yarn workspace docs export",
"docs:icons": "yarn workspace docs icons",
"docs:size-why": "cross-env DOCS_STATS_ENABLED=true yarn docs:build",
"docs:start": "yarn workspace docs icons",
"docs:i18n": "cross-env BABEL_ENV=test babel-node ./docs/scripts/i18n.js",
"docs:typescript": "yarn workspace docs typescript:transpile:dev",
"docs:typescript:check": "yarn workspace docs typescript",
"docs:typescript:formatted": "yarn workspace docs typescript:transpile",
"jsonlint": "yarn --silent jsonlint:files | xargs -n1 jsonlint -q -c && echo \"jsonlint: no lint errors\"",
"jsonlint:files": "find . -name \"*.json\" | grep -v -f .eslintignore",
"lint": "eslint . --cache --report-unused-disable-directives",
"lint:ci": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --cache --fix",
"prettier": "yarn node ./scripts/prettier.js",
"prettier:all": "yarn node ./scripts/prettier.js write",
"size:snapshot": "node scripts/sizeSnapshot/create",
"size:why": "size-limit --why packages/material-ui/build/index.js",
"start": "yarn docs:dev",
"test": "yarn lint && yarn typescript && yarn test:coverage",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha 'packages/**/*.test.js' 'docs/**/*.test.js' --exclude '**/node_modules/**' && nyc report -r lcovonly",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha 'packages/**/**/*.test.js' --exclude '**/node_modules/**' && nyc report --reporter=html",
"test:karma": "cross-env NODE_ENV=test karma start test/karma.conf.js",
"test:regressions": "webpack --config test/regressions/webpack.config.js && rimraf test/regressions/screenshots/chrome/* && vrtest run --config test/vrtest.config.js --record",
"test:umd": "yarn node packages/material-ui/test/umd/run.js",
"test:unit": "cross-env NODE_ENV=test mocha 'packages/**/*.test.js' 'docs/**/*.test.js' --exclude '**/node_modules/**'",
"test:watch": "yarn test:unit --watch",
"typescript": "lerna run typescript --parallel"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@testing-library/react": "^8.0.2",
"@types/chai": "^4.1.7",
"@types/chai-dom": "^0.0.7",
"@types/enzyme": "^3.1.4",
"@types/jsdom": "^12.2.3",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/react": "^16.8.10",
"@types/sinon": "^7.0.13",
"argos-cli": "^0.1.1",
"aws-sdk": "^2.471.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.0.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-optimize-clsx": "^2.3.0",
"babel-plugin-preval": "^2.0.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-tester": "^6.4.0",
"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.21",
"chai": "^4.1.2",
"chai-dom": "^1.8.1",
"compression-webpack-plugin": "^2.0.0",
"cross-env": "^5.1.1",
"danger": "^7.0.12",
"dtslint": "^0.8.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-hooks": "^1.2.0",
"expect-puppeteer": "^3.5.1",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"glob-gitignore": "^1.0.11",
"jsdom": "^15.0.0",
"jsonlint": "^1.6.3",
"karma": "^4.0.1",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lerna": "^3.15.0",
"mocha": "^5.0.0",
"nyc": "^13.0.0",
"prettier": "^1.8.2",
"prop-types": "^15.7.2",
"puppeteer": "^1.5.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"rimraf": "^2.6.2",
"rollup": "^1.12.4",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-size-snapshot": "^0.9.0",
"rollup-plugin-terser": "^5.0.0",
"sinon": "^7.0.0",
"size-limit": "^0.21.0",
"tslint": "5.14.0",
"typescript": "3.2.2",
"vrtest": "^0.2.0",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.0.0",
"webpack-cli": "^3.2.3",
"yarn-deduplicate": "^1.1.1"
},
"resolutions": {
"**/hoist-non-react-statics": "^3.2.1"
},
"nyc": {
"include": [
"packages/material-ui/src/**/*.js",
"packages/material-ui-utils/src/**/*.js",
"packages/material-ui-styles/src/**/*.js"
],
"exclude": [
"**/*.test.js"
],
"sourceMap": false,
"instrument": false
},
"workspaces": [
"packages/*",
"docs"
]
}