-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
39 lines (39 loc) · 1.46 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
{
"private": true,
"workspaces": [
"examples",
"helpers",
"packages/rescript-mui-material",
"packages/rescript-mui-lab",
"packages/rescript-mui-system",
"packages/rescript-mui-x-date-pickers"
],
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.1.1",
"scripts": {
"build": "rescript build -with-deps",
"clean": "rewatch clean .",
"format": "rescript format -all",
"watch": "rewatch watch .",
"start": "cd examples && parcel serve src/index.html",
"generateOverrides": "node helpers/src/GenerateOverrides.bs.js && rescript format ./packages/rescript-mui-material/src/types/Overrides.res && rescript format ./packages/rescript-mui-lab/src/Overrides.res",
"publishLab": "yarn clean && cd packages/rescript-mui-lab && npm publish --access public",
"publishMui": "yarn clean && cd packages/rescript-mui-material && npm publish --access public",
"publishSystem": "yarn clean && cd packages/rescript-mui-system && npm publish --access public",
"publishDatePickers": "yarn clean && cd packages/rescript-mui-x-date-pickers && npm publish --access public"
},
"devDependencies": {
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.15",
"@mui/system": "^5.15.15",
"@mui/x-date-pickers": "^7.1.1",
"@rescript/react": "^0.12.1",
"@rescript/tools": "^0.5.0",
"@rolandpeelen/rewatch": "^0.0.15",
"parcel": "^2.12.0",
"process": "^0.11.10",
"rescript": "^11.0.1"
}
}