-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.28 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/utilitywarehouse/design-systems"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@utilitywarehouse/prettier-config": "^0.1.1",
"eslint": "8.57.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"scripts": {
"setup": "corepack enable && corepack prepare pnpm@9 --activate",
"build": "turbo run build",
"dev": "turbo run dev",
"build:storybook": "turbo run build:storybook",
"build:colour-system": "pnpm build --filter \"@utilitywarehouse/colour-system\"",
"generate": "turbo run generate && turbo run format",
"preinstall": "npx only-allow pnpm",
"format": "turbo run format",
"format:ci": "turbo run format:ci",
"lint": "turbo run lint --filter='./packages/*'",
"lint:fix": "turbo run lint:fix --filter='./packages/*'",
"clean": "pnpm -r --stream clean && rm -rf node_modules",
"dev:web": "pnpm run build --filter \"@utilitywarehouse/css-reset\" && pnpm run dev --filter \"@utilitywarehouse/web-ui\"",
"changeset": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "NODE_OPTIONS=\"--max_old_space_size=4096\" pnpm run build && changeset publish",
"checks": "turbo run format lint:fix build --filter='./packages/*'",
"checks:ci": "turbo run format:ci lint build --filter='./packages/*'",
"postinstall": "patch-package && pnpm build:colour-system"
},
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"pnpm": "^9.15.0"
},
"resolutions": {
"react-docgen-typescript": "2.2.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"react-docgen-typescript": "2.2.2",
"react": "18.2.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
},
"prettier": "@utilitywarehouse/prettier-config"
}