-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
package.json
31 lines (31 loc) · 1.1 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
{
"private": true,
"workspaces": [
"enjoy",
"1000-hours",
"1000h-portal"
],
"scripts": {
"start:enjoy": "echo 'Please use `yarn enjoy:start` instead'",
"enjoy:add": "yarn workspace enjoy add",
"enjoy:remove": "yarn workspace enjoy remove",
"enjoy:dev": "yarn workspace enjoy dev",
"enjoy:start": "yarn workspace enjoy start",
"enjoy:test": "yarn workspace enjoy test",
"enjoy:test:main": "yarn workspace enjoy test:main",
"enjoy:test:renderer": "yarn workspace enjoy test:renderer",
"enjoy:package": "yarn workspace enjoy package",
"enjoy:make": "yarn workspace enjoy make",
"enjoy:publish": "yarn workspace enjoy publish",
"enjoy:lint": "yarn workspace enjoy eslint --ext .ts,.tsx .",
"enjoy:create-migration": "yarn workspace enjoy create-migration",
"docs:dev": "yarn workspace 1000-hours dev",
"docs:build": "yarn workspace 1000-hours build",
"docs:preview": "yarn workspace 1000-hours preview",
"portal:generate": "yarn workspace 1000h-portal generate"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}