-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 2.5 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
{
"name": "typescript-fullstack-skeleton",
"version": "1.0.0",
"description": "Monorepo boilerplate for backend/frontend projects written in Typescript and following the Hexagonal Architecture paradigm.",
"repository": "git@github.com:cjuega/typescript-fullstack-skeleton.git",
"author": "Carlos Juega",
"license": "MIT",
"private": true,
"workspaces": ["src/contexts/*", "src/apps/*/*"],
"scripts": {
"postinstall": "npx husky install",
"precommit": "npx lerna run precommit --since $(git describe --tags --abbrev=0) --stream --concurrency 1",
"lint": "yarn lint:contexts && yarn lint:apps",
"lint:contexts": "npx lerna run lint --scope @context/* --since $(git describe --tags --abbrev=0) --stream",
"lint:apps": "npx lerna run lint --scope @app/* --since $(git describe --tags --abbrev=0) --stream",
"build": "npx lerna run build --scope @context/* --since $(git describe --tags --abbrev=0)",
"build:all": "npx lerna run build --scope @context/*",
"test": "yarn build && yarn test:unit && yarn test:integration && yarn test:features",
"test:unit": "npx lerna run test:unit --scope @context/* --since $(git describe --tags --abbrev=0) --stream",
"test:integration": "npx lerna run test:integration --scope @context/* --since $(git describe --tags --abbrev=0) --stream --concurrency 1",
"test:features": "npx lerna run test --scope @app/* --since $(git describe --tags --abbrev=0) --stream --concurrency 1",
"saveSetup:aws": "npx lerna run saveSetup:aws --scope @app/* --stream --",
"restoreSetup:aws": "npx lerna run restoreSetup:aws --scope @app/* --since $(git describe --tags --abbrev=0) --stream --",
"deploy:all:aws": "npx lerna run deploy:aws --scope @app/* --stream --",
"deploy:aws": "npx lerna run deploy:aws --scope @app/* --since $(git describe --tags --abbrev=0) --stream --",
"test:features:aws": "npx lerna run test:features:aws --scope @app/* --since $(git describe --tags --abbrev=0) --stream --concurrency 1 --",
"publish:docs:aws": "npx lerna run publish:docs:aws --scope @app/* --since $(git describe --tags --abbrev=0) --stream --concurrency 1 --",
"publish:version": "npx lerna version --conventional-commits --no-commit-hooks --yes",
"destroy:aws": "npx lerna run destroy:aws --scope @app/* --stream --",
"clean:libs": "find . -name node_modules -prune -exec rm -rf {} \\;"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.5",
"lerna": "^8.1.8"
}
}