-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.79 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
{
"name": "strapi-website-monorepo",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo build --cache-dir=.turbo",
"build:strapi": "turbo run build --filter=@repo/strapi",
"build:ui": "turbo run build --filter=@repo/ui",
"build:ui:static": "NODE_OPTIONS=--max-old-space-size=2048 turbo run build:static --filter=@repo/ui",
"commit": "git-cz",
"dev": "turbo dev",
"dev:strapi": "turbo run dev --filter=@repo/strapi",
"dev:ui": "turbo run dev --filter=@repo/ui",
"format": "prettier --write --cache --ignore-unknown \"**/(*.{md,css,scss}|*.package.json)\"",
"format:check": "prettier --check --cache --ignore-unknown \"**/(*.{md,css,scss}|*.package.json)\"",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run setup:apps",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prepare": "husky",
"setup:apps": "find . -name '*.example' -exec sh -c 'cp -n \"$1\" \"${1%.example}\"' _ {} \\;",
"start:strapi": "turbo run start --filter=@repo/strapi",
"start:ui": "turbo run start --filter=@repo/ui",
"test": "turbo run test",
"test:ci": "turbo run test --filter=!@repo/strapi",
"test:strapi": "turbo run test --filter=@repo/strapi",
"test:ui": "turbo run test --filter=@repo/ui",
"tests:lhci:perfo": "turbo run lhci-perfo-check --filter=@repo/tests-playwright",
"tests:playwright:axe": "turbo run axe-test --filter=@repo/tests-playwright",
"tests:playwright:e2e:test": "turbo run playwright-e2e-tests --filter=@repo/tests-playwright",
"tests:playwright:e2e:test:interactive": "turbo run playwright-interactive-mode --filter=@repo/tests-playwright",
"tests:playwright:seo": "pnpm -F @repo/tests-playwright exec playwright test --project=seo",
"tests:playwright:visual": "turbo run playwright-visual-tests --filter=@repo/tests-playwright",
"turbo": "turbo build lint:fix typecheck; pnpm run format",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@commitlint/config-pnpm-scopes": "20.1.0",
"@repo/eslint-config": "workspace:*",
"@repo/semantic-release-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.39.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"shadcn": "^3.8.5",
"turbo": "2.8.9"
},
"packageManager": "pnpm@10.28.1",
"engines": {
"node": "^24.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"packageExtensions": {
"@hookform/resolvers": {
"peerDependencies": {
"zod": "*"
}
}
}
}
}