-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.93 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"private": true,
"description": "Bloomreach SPA SDK",
"name": "spa-sdk-workspace",
"type": "module",
"keywords": [
"bloomreach",
"spa",
"sdk"
],
"engines": {
"node": "^18.0.0",
"pnpm": "^8.0.0"
},
"author": "Bloomreach B.V.",
"license": "Apache-2.0",
"homepage": "https://www.bloomreach.com",
"repository": {
"type": "git",
"url": "https://github.com/bloomreach/spa-sdk"
},
"bugs": {
"url": "https://issues.onehippo.com/projects/SPASDK/issues"
},
"scripts": {
"audit": "pnpm -r --stream audit --prod --audit-level=critical",
"prebuild": "pnpm --filter @bloomreach/example-angular run prebuild:custom",
"build": "pnpm -r --stream build",
"dev": "pnpm -r --parallel --filter @bloomreach/${SDK_NAME:-*}-sdk run dev",
"lint": "pnpm -r --workspace-concurrency=1 lint",
"test": "pnpm -r --workspace-concurrency=1 test",
"bump": "pnpm changeset && pnpm changeset version && pnpm install && pnpm postbump",
"postbump": "pnpm changelog",
"changelog": "auto-changelog --latest-version $(pnpm pkg get version -C ./packages/spa-sdk)",
"docs": "pnpm -r --stream docs",
"deploy-to-heroku": "./scripts/deploy_heroku_app.sh ${0} ${1} ${2}",
"heroku-postbuild": "pnpm prebuild && pnpm build && cd ${PROJECT_PATH:-.}",
"release": "pnpm publish -r --filter \"./packages/**\" --no-git-checks"
},
"devDependencies": {
"@changesets/cli": "2.27.7",
"auto-changelog": "2.3.0",
"glob": "10.2.6",
"heroku": "9.2.0",
"npx": "10.2.2"
},
"auto-changelog": {
"hideCredit": true,
"commitLimit": false,
"tagPrefix": "spa-sdk-",
"appendGitLog": "--since 2021-05-10",
"hideEmptyReleases": true,
"remote": "github",
"issueUrl": "https://issues.onehippo.com/browse/{id}",
"issuePattern": "^[A-Z]+-\\d+",
"mergeUrl": "https://code.bloomreach.com/engineering/xm/spa-sdk/-/merge_requests/{id}"
},
"packageManager": "[email protected]"
}