-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.45 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.45 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
{
"private": true,
"workspaces": [
"example",
"packages/*"
],
"scripts": {
"build": "yarn build:incept && yarn build:generators && yarn build:plugins",
"build:incept": "yarn --cwd packages/incept build",
"build:generators": "yarn build:types && yarn build:inquire && yarn build:ink",
"build:types": "yarn --cwd packages/incept-types build",
"build:ink": "yarn --cwd packages/incept-ink build",
"build:inquire": "yarn --cwd packages/incept-inquire build",
"build:plugins": "yarn build:i18n && yarn build:user && yarn build:api && yarn build:admin && yarn build:email",
"build:i18n": "yarn --cwd packages/incept-i18n build",
"build:admin": "yarn --cwd packages/incept-admin build",
"build:user": "yarn --cwd packages/incept-user build",
"build:api": "yarn --cwd packages/incept-api build",
"build:email": "yarn --cwd packages/incept-email build",
"build:example": "yarn --cwd example build",
"compile": "yarn --cwd example build",
"develop": "yarn --cwd example develop",
"emit": "yarn --cwd example emit",
"generate": "yarn --cwd example generate",
"migrate": "yarn --cwd example migrate",
"populate": "yarn --cwd example populate",
"purge": "yarn --cwd example purge",
"push": "yarn --cwd example push",
"query": "yarn --cwd example query",
"start": "yarn --cwd example start",
"test": "yarn --cwd example test"
},
"devDependencies": {
"npm-run-all": "4.1.5"
}
}