forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 846 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 846 Bytes
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
{
"engines": {
"node": "12",
"yarn": "2"
},
"name": "@react-day-picker/monorepo",
"private": true,
"description": "Flexible Date Picker for React",
"author": "Giampaolo Bellavite <io@gpbl.org>",
"homepage": "http://react-day-picker.js.org",
"license": "MIT",
"scripts": {
"build": "yarn workspaces foreach -v -t run build",
"develop": "concurrently --names react-day-picker,website,scripts \"yarn workspace react-day-picker develop\" \"yarn workspace website develop\" \"yarn workspace scripts develop\""
},
"repository": {
"type": "git",
"url": "https://github.com/gpbl/react-day-picker"
},
"bugs": {
"url": "https://github.com/gpbl/react-day-picker/issues"
},
"workspaces": [
"website",
"scripts",
"packages/*"
],
"devDependencies": {
"concurrently": "^5.2.0"
}
}