forked from mui/material-ui-pickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "@material-ui/pickers",
"version": "2.0.0",
"description": "Material-ui pickers root package",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"private": true,
"workspaces": [
"lib",
"docs"
],
"engines": {
"node": "12.x"
},
"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'",
"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/runtime": "^7.7.5",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-pretty-imports": "^1.0.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"@cypress/webpack-preprocessor": "^4.1.0",
"@percy/cypress": "^1.0.9",
"cypress": "^3.2.0",
"wait-on": "^3.2.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",
"git add"
]
},
"eslintIgnore": [
"**/node_modules",
"**/coverage",
"videos/",
"**/build"
]
}