-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "cap-explorer",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Psychedelic/cap-explorer"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@psychedelic"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"lerna": "^4.0.0",
"process": "^0.11.10",
"semantic-release": "^18.0.0",
"standard-version": "^9.3.2"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": ".scripts/update-version.sh"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"packages/dashboard/package.json",
"packages/dashboard/package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): 🤖 ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "packages/dashboard/dist",
"label": "Distribution"
}
]
}
]
]
},
"scripts": {
"build:production": "lerna run --stream --scope dashboard build:production",
"build:staging": "lerna run --scope dashboard build:staging",
"build:local": "lerna run --scope dashboard build:local",
"dev:dashboard-dev": "lerna run --stream --scope dashboard dev:development",
"dev:dashboard-prod": "lerna run --stream --scope dashboard dev:production",
"test:dashboard-unit": "lerna run --scope dashboard test:unit",
"cap:init": "git submodule update --init --recursive",
"cap:update": "git submodule update --remote --merge",
"cap:start": "./.scripts/run-cap-service.sh",
"cap:reset": "./.scripts/cap-reset.sh",
"cap:generate-mocks": ".scripts/generate-cap-mocks.sh",
"release": "standard-version",
"profiler:dashboard": "lerna run --stream --scope dashboard webpack:profiler"
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"version": "1.1.0"
}