-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 3.35 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
{
"name": "gc-digital-talent",
"private": true,
"author": "",
"license": "AGPL-3.0",
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9.12.3"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "h2-build && turbo run build --filter @gc-digital-talent/web",
"build:fresh": "h2-build && turbo run build --filter @gc-digital-talent/web --force",
"build:css": "h2-build",
"codegen": "turbo run codegen --filter @gc-digital-talent/graphql",
"clean": "turbo run clean",
"dev": "h2-build && turbo run dev --filter @gc-digital-talent/web",
"dev:fresh": "h2-build && turbo run dev --filter @gc-digital-talent/web --force",
"check-intl:i18n": "turbo run check-intl --filter @gc-digital-talent/i18n -- --dir $INIT_CWD --en ./packages/i18n/src/lang/en.json --fr ./packages/i18n/src/lang/fr.json --rm-orphaned --output-untranslated ./packages/i18n/src/lang/untranslated.json --whitelist ./packages/i18n/src/lang/whitelist.yml",
"check-intl:web": "turbo run check-intl --filter @gc-digital-talent/i18n -- --dir $INIT_CWD --en ./apps/web/src/lang/en.json --fr ./apps/web/src/lang/fr.json --rm-orphaned --output-untranslated ./apps/web/src/lang/untranslated.json --whitelist ./apps/web/src/lang/whitelist.yml",
"check-intl-merge:i18n": "turbo run check-intl --filter @gc-digital-talent/i18n -- --dir $INIT_CWD --en ./packages/i18n/src/lang/en.json --fr ./packages/i18n/src/lang/fr.json --rm-orphaned --output-untranslated ./packages/i18n/src/lang/untranslated.json --whitelist ./packages/i18n/src/lang/whitelist.yml --merge-fr ./packages/i18n/src/lang/newTranslations.json",
"check-intl-merge:web": "turbo run check-intl --filter @gc-digital-talent/i18n -- --dir $INIT_CWD --en ./apps/web/src/lang/en.json --fr ./apps/web/src/lang/fr.json --rm-orphaned --output-untranslated ./apps/web/src/lang/untranslated.json --whitelist ./apps/web/src/lang/whitelist.yml --merge-fr ./apps/web/src/lang/newTranslations.json",
"check-intl": "pnpm run intl-extract & pnpm run check-intl:i18n & pnpm run check-intl:web",
"intl-extract": "turbo run intl-extract",
"intl-compile": "turbo run intl-compile",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prettier": "turbo run prettier",
"prettier:fix": "turbo run prettier:fix",
"storybook": "pnpm --filter @gc-digital-talent/web run storybook",
"storybook:design-system": "pnpm --filter @gc-digital-talent/web run storybook:design-system",
"storybook:web": "pnpm --filter @gc-digital-talent/web run storybook:web",
"build-storybook": "pnpm --filter @gc-digital-talent/web run build-storybook",
"test": "turbo run test",
"watch": "turbo run watch --filter @gc-digital-talent/web --filter @gc-digital-talent/graphql",
"e2e:playwright": "pnpm --filter @gc-digital-talent/playwright run e2e:playwright",
"e2e:playwright:chromium": "pnpm --filter @gc-digital-talent/playwright run e2e:playwright:chromium",
"e2e:playwright:firefox": "pnpm --filter @gc-digital-talent/playwright run e2e:playwright:firefox",
"e2e:playwright:webkit": "pnpm --filter @gc-digital-talent/playwright run e2e:playwright:webkit",
"e2e:playwright:report": "pnpm --filter @gc-digital-talent/playwright run e2e:playwright:report",
"tsc": "turbo run tsc"
},
"devDependencies": {
"@hydrogen-css/hydrogen": "2.1.0",
"turbo": "^2.3.0"
}
}