-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "jss-rule-engine-demo",
"description": "Application utilizing Sitecore JavaScript Services and Next.js",
"version": "21.2.0",
"private": true,
"workspaces": [
"./packages/*",
"./apps/*"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"author": {
"name": "Sitecore Corporation",
"url": "https://jss.sitecore.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sitecore/jss.git"
},
"bugs": {
"url": "https://github.com/sitecore/jss/issues"
},
"license": "Apache-2.0",
"scripts": {
"test:core": "yarn workspace @jss-rule-engine/core test",
"test:workflow": "yarn workspace @jss-rule-engine/workflow test",
"test:w": "yarn workspace @jss-rule-engine/workflow t",
"build:core": "yarn workspace @jss-rule-engine/core build",
"build:edge": "yarn workspace @jss-rule-engine/edge build",
"build:chat": "yarn workspace @jss-rule-engine/chat build",
"build:next": "yarn workspace @jss-rule-engine/nextjs build",
"build:docs": "yarn workspace @jss-rule-engine/docs build",
"build:workflow": "yarn workspace @jss-rule-engine/workflow build",
"build:demo": "yarn workspace jsssandbox build",
"build:editor": "yarn workspace @jss-rule-engine/editor build",
"build:items": "dotnet sitecore itemres create -o docker/build/ruleengine-cm-assets/items/ruleengine --overwrite",
"build": "yarn run build:core && yarn run build:edge && yarn run build:next && yarn run build:workflow",
"start:demo": "yarn workspace jsssandbox build && yarn workspace jsssandbox start:connected",
"start:editor": "yarn workspace @jss-rule-engine/editor start",
"tsc:demo": "yarn workspace jsssandbox tsc",
"release:all": "yarn workspaces foreach -A run release",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:login": "docker login ghcr.io -u jack.spektor@gmail.com --password-stdin",
"docker:push": "docker image push ghcr.io/jackthehack/ruleengine-cm-assets",
"sitecore:pull": "dotnet sitecore ser pull",
"sitecore:push": "dotnet sitecore ser push",
"sitecore:validate": "dotnet sitecore ser validate --fix",
"sitecore:login": "dotnet sitecore login",
"poll": "POLL_URL=http://localhost:3000/api/schedule/run node scripts/pollUrl.js"
},
"packageManager": "yarn@4.9.1"
}