-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.99 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.99 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
97
98
99
{
"name": "multiapp-monorepo-cicd",
"description": "Production-ready monorepo reference architecture for multiple React SPAs with automated CI/CD deployment pipelines, shared component libraries, E2E testing, and staging-to-production workflows",
"private": true,
"license": "MIT",
"author": "agruber",
"homepage": "https://github.com/InkByteStudio/react-spa-monorepo-cicd#readme",
"repository": {
"type": "git",
"url": "https://github.com/InkByteStudio/react-spa-monorepo-cicd.git"
},
"bugs": {
"url": "https://github.com/InkByteStudio/react-spa-monorepo-cicd/issues"
},
"keywords": [
"monorepo",
"react",
"typescript",
"vite",
"cicd",
"github-actions",
"gitlab-ci",
"playwright",
"e2e-testing",
"docker",
"pnpm-workspaces",
"deployment",
"devops",
"boilerplate",
"template",
"spa",
"shared-components",
"rsync",
"nginx",
"staging"
],
"packageManager": "pnpm@10.11.0",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc -b apps/admin-spa apps/portal-spa",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"build:admin-spa": "pnpm --filter @repo/admin-spa build",
"build:portal-spa": "pnpm --filter @repo/portal-spa build",
"build:main-site": "bash scripts/build-main-site.sh",
"dev:admin-spa": "pnpm --filter @repo/admin-spa dev",
"dev:portal-spa": "pnpm --filter @repo/portal-spa dev",
"deploy:main-site": "bash scripts/deploy-main-site.sh",
"deploy:admin-spa": "bash scripts/deploy-spa.sh admin-spa",
"deploy:portal-spa": "bash scripts/deploy-spa.sh portal-spa",
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
"test:e2e:update-snapshots": "playwright test --config=e2e/playwright.config.ts --update-snapshots",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"run-all": "bash scripts/run-all.sh"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml,css,html}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.0",
"vitest": "^3.0.4",
"vitest-axe": "^0.1.0",
"zod": "^4.3.6"
}
}