-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
50 lines (50 loc) · 3.18 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
{
"name": "root",
"private": true,
"scripts": {
"depcheck": "lerna exec \"depcheck --skip-missing\" --stream --concurrency 1 --no-bail",
"build": "yarn build:static && yarn build:ts && lerna run build --scope ui-packages --stream",
"build:ui": "lerna run build --scope ui-packages --stream",
"build:storybook": "lerna run storybook-build --scope ui-packages --stream",
"build:docs": "lerna run build:docs",
"lint": "lerna run lint --parallel --stream",
"lint-fix": "lerna run lint-fix --parallel --stream",
"clean": "lerna run clean --parallel",
"build:static": "lerna run build:static --parallel",
"build:ts": "lerna run build:ts --stream",
"migrate:demo": "lerna run typeorm:drop --scope @energyweb/exchange && lerna run typeorm:run && lerna run start:defaultConfigs --scope @energyweb/migrations-irec --stream",
"migrate:demo:web3": "lerna run typeorm:run && lerna run start:defaultConfigs --scope @energyweb/migrations-irec --stream",
"run:backend": "lerna run start --scope @energyweb/origin-backend-irec-app --stream",
"run:ui": "lerna run start --scope ui-packages --stream",
"run:ganache": "npx ganache-cli -m \"chalk park staff buzz chair purchase wise oak receive avoid avoid home\" -l 8000000 -e 1000000 -a 40 -h 0.0.0.0",
"test": "lerna run test:concurrent --stream --parallel",
"test:serial": "lerna run test:concurrent --stream && yarn test:ui",
"test:ui": "lerna run test --scope ui-packages --stream",
"test:backend": "lerna run --scope @energyweb/origin-backend --scope @energyweb/origin-backend-utils --stream test",
"test:utils-general": "lerna run test --scope @energyweb/utils-general --stream",
"test:ci:e2e": "lerna run test:e2e --stream --ignore @energyweb/exchange-irec --ignore @energyweb/issuer-api && lerna run test:e2e --stream --scope @energyweb/exchange-irec --scope @energyweb/issuer-api",
"publish:canary": "lerna publish --yes --skip-git --exact --cd-version=prerelease --pre-dist-tag canary --preid=alpha.$BUILD_ID",
"publish:release": "lerna version --create-release github --conventional-commits --exact --yes --force-git-tag --message \"chore(release): publish /skip-deploy\" && lerna publish from-git --yes",
"build:containers:canary": "lerna run build:container:canary --stream",
"build:containers:release": "lerna run build:container:latest --stream",
"publish:preview": "lerna publish --yes --skip-git --exact --cd-version=prerelease --pre-dist-tag preview --preid=$BUILD_ID",
"deploy:heroku:canary": "lerna run deploy:container:heroku:canary --stream",
"deploy:heroku:stable": "lerna run deploy:container:heroku:stable --stream",
"test:ui:e2e": "lerna run e2e --scope ui-packages --stream"
},
"workspaces": [
"packages/*",
"packages/apps/*",
"packages/devices/*",
"packages/organizations/*",
"packages/api-clients/react-query/*",
"packages/tools/*",
"packages/traceability/*",
"packages/trade/*",
"packages/ui/*",
"packages/utils/*"
],
"engines": {
"node": "14"
}
}