-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 968 Bytes
/
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
{
"name": "mit-learn",
"version": "1.0.0",
"repository": "https://github.com/mitodl/mit-learn.git",
"license": "MIT",
"private": true,
"engines": {
"node": "^22.0.0",
"yarn": "^4.1.1"
},
"workspaces": [
"frontends"
],
"scripts": {
"build": "yarn workspace main build",
"watch": "yarn workspace main dev",
"style-lint": "yarn workspace frontends run style-lint",
"test": "MITOL_API_BASE_URL=https://api.test.learn.mit.edu yarn workspace frontends global:test",
"test-watch": "MITOL_API_BASE_URL=https://api.test.learn.mit.edu yarn workspace frontends test-watch",
"storybook": "yarn workspace ol-components storybook",
"lint-check": "yarn workspace frontends run lint-check",
"typecheck": "yarn workspace frontends run typecheck"
},
"packageManager": "[email protected]",
"devDependencies": {
"syncpack": "^12.4.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
}
}