-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 1.34 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
{
"name": "dotcom-rendering",
"version": "1.0.0",
"repository": "[email protected]:guardian/dotcom-rendering.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"postinstall": "./scripts/postinstall.sh",
"storybook": "pnpm '/^storybook:.*/'",
"storybook:dcr": "pnpm --filter @guardian/dotcom-rendering storybook --no-open --quiet",
"storybook:ar": "pnpm --filter apps-rendering storybook --no-open --quiet",
"build-storybook": "pnpm '/^build-storybook:.*/'",
"build-storybook:ar": "pnpm --filter apps-rendering build-storybook",
"build-storybook:dcr": "pnpm --filter @guardian/dotcom-rendering build-storybook",
"build:dcr": "cd dotcom-rendering && make build",
"chromatic": "chromatic --build-script-name=build-storybook --exit-zero-on-changes",
"prepare": "husky install",
"lint-staged": "lint-staged",
"prettier:check": "prettier --ignore-unknown --check --cache .",
"prettier:write": "prettier --ignore-unknown --write --cache ."
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@guardian/prettier": "5.0.0",
"chromatic": "11.5.5",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.0.3",
"tslib": "2.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}