generated from furystack/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.01 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
{
"name": "multiverse",
"version": "2022.08.03",
"description": "A furystack-based microservice and microfrontend collection",
"main": "services/auth/src/index.ts",
"repository": "https://github.com/furystack/multiverse.git",
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
"license": "GPL-2.0-only",
"private": true,
"workspaces": {
"packages": [
"frontends/*",
"services/*",
"common/*",
"lib/*",
"workers/*",
"e2e"
]
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-json-schema-generator": "1.2.0",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .tsx,.ts --cache --fix",
"git add"
],
"*.{js,jsx}": [
"git add"
]
},
"scripts": {
"build:services": "tsc -b services",
"build:workers": "tsc -b workers",
"build:common": "tsc -b common",
"build:frontends": "yarn workspace @frontend/core build",
"build": "yarn build:common && yarn build:workers && yarn build:services && yarn build:frontends",
"test:unit": "jest --verbose",
"clean": "rimraf (common|services|frontends)/**/(dist|bundle|tsconfig.tsbuildinfo) tsconfig.tsbuildinfo",
"lint": "eslint . --ext .tsx,.ts --cache",
"seed": "yarn workspace @service/auth seed",
"create-schemas": "yarn workspace @common/models create-schemas",
"docker:frontend-core": "docker build . --file ./frontend-core.Dockerfile --tag furystack/multiverse-frontend-core:latest",
"docker:base": "docker build . --file ./base.Dockerfile --tag furystack/multiverse-base:latest",
"docker:auth": "docker build . --file ./auth.Dockerfile --tag furystack/multiverse-auth:latest",
"docker:dashboard": "docker build . --file ./dashboard.Dockerfile --tag furystack/multiverse-dashboard:latest",
"docker:diag": "docker build . --file ./diag.Dockerfile --tag furystack/multiverse-diag:latest",
"docker:media": "docker build . --file ./media.Dockerfile --tag furystack/multiverse-media:latest",
"docker:media-encoder": "docker build . --file ./media-encoder.Dockerfile --tag furystack/multiverse-media-encoder:latest",
"dockerize": "yarn docker:base && yarn docker:auth && yarn docker:diag && yarn docker:dashboard && yarn docker:media && yarn docker:frontend-core"
},
"jest-junit": {
"suiteName": "FuryStack Multiverse Jest tests",
"outputDirectory": "./coverage"
},
"packageManager": "yarn@3.3.1"
}