forked from mui/material-ui-pickers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 KB
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
{
"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"
],
"scripts": {
"start": "yarn workspace docs dev",
"release": "yarn workspace material-ui-pickers release && yarn workspace docs deploy",
"e2e:open": "cypress open",
"e2e:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmtrKovalenko/material-ui-pickers.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmtrKovalenko/material-ui-pickers/issues"
},
"homepage": "https://github.com/dmtrKovalenko/material-ui-pickers#readme",
"devDependencies": {
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"cypress": "^3.1.4",
"wait-on": "^3.2.0"
}
}