forked from mui/material-ui-pickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
{
"version": "4.0.0",
"private": true,
"description": "Material-ui pickers root package",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"workspaces": [
"lib",
"docs"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "yarn dev",
"dev": "yarn workspace docs dev",
"e2e:run": "cypress run",
"e2e:open": "cypress open",
"docgen": "node docs/scripts/docgen.js",
"lint": "eslint './**/*.ts*' './**/*.js' './**/*.jsx'",
"prettier": "prettier --write './{lib,docs,e2e}/**/*.{js,jsx,ts,tsx,json,css,md,mdx}'",
"build": "yarn workspaces run build & yarn workspaces run build:typescript",
"release": "yarn workspace @material-ui/pickers release && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mui-org/material-ui-pickers.git"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@cypress/webpack-preprocessor": "^4.1.0",
"@percy/cypress": "^2.3.1",
"@testing-library/cypress": "^6.0.0",
"@testing-library/dom": "^7.18.1",
"@testing-library/react": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"babel-loader": "^8.1.0",
"cypress": "^4.8.0",
"cypress-plugin-tab": "^1.0.5",
"cypress-react-unit-test": "^4.7.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-pretty-imports": "^1.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^1.14.3",
"wait-on": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/src/**/*.{ts,tsx}": [
"yarn docgen",
"git add docs/prop-types.json"
],
"*.{js,jsx,ts,tsx,json,css,md,mdx}": [
"prettier --write"
]
},
"eslintIgnore": [
"**/node_modules",
"**/coverage",
"videos/",
"**/build"
]
}