forked from mitodl/mit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 908 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 908 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
{
"name": "mit-learn-frontend",
"version": "1.0.0",
"repository": "https://github.com/mitodl/mit-learn.git",
"license": "MIT",
"private": true,
"engines": {
"node": "^20",
"yarn": "^4.1.1"
},
"workspaces": [
"frontends"
],
"scripts": {
"build": "yarn workspace mit-learn run build",
"watch": "yarn workspace mit-learn run watch",
"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 frontends storybook",
"lint-check": "yarn workspace frontends run lint-check",
"typecheck": "yarn workspace frontends run typecheck"
},
"packageManager": "yarn@4.4.0",
"devDependencies": {
"syncpack": "^12.4.0"
}
}