-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.44 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.44 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
{
"name": "rescript-mui",
"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": ">=22"
},
"packageManager": "yarn@4.1.1",
"scripts": {
"build": "rewatch build .",
"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": "^6.0.0-beta.30",
"@mui/material": "^6.4.4",
"@mui/system": "^6.4.7",
"@mui/x-date-pickers": "^7.27.3",
"@rescript/react": "^0.12.1",
"@rescript/tools": "^0.6.6",
"@rolandpeelen/rewatch": "^1.2.0",
"parcel": "^2.13.3",
"rescript": "^11.1.4"
}
}