-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.7 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.7 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
{
"name": "ofh-design-system-toolkit-monorepo",
"private": true,
"description": "Our Future Health design system toolkit monorepo. Individual packages have independent versioning - see packages/toolkit and packages/react-components for their versions.",
"packageManager": "pnpm@10.29.2",
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"editorconfig@1.0.4>minimatch": "9.0.7",
"minimatch@3.1.2": "3.1.4",
"minimatch@5.1.6": "5.1.8",
"minimatch@8.0.4": "8.0.6",
"minimatch@9.0.1": "9.0.7",
"minimatch@9.0.5": "9.0.7",
"minimatch@10.1.2": "10.2.4",
"markdown-it@13.0.2": "14.1.1",
"ajv@8.12.0": "8.18.0",
"ajv@8.13.0": "8.18.0",
"ajv@8.17.1": "8.18.0",
"serialize-javascript": "7.0.3",
"rollup": "4.59.0",
"immutable": "5.1.5",
"liquidjs": "10.25.0",
"flatted": "3.4.2",
"undici": "7.24.0",
"picomatch@2.3.1": "2.3.2",
"picomatch@4.0.3": "4.0.4",
"handlebars": "4.7.9",
"lodash": "4.18.0",
"lodash-es": "4.18.0"
}
},
"scripts": {
"prepare": "husky",
"dev": "concurrently -n toolkit,site,react,storybook -c magenta,blue,cyan,green \"pnpm:dev:toolkit\" \"pnpm:dev:site\" \"pnpm:dev:react-components\" \"pnpm storybook\"",
"dev:verbose": "concurrently -n toolkit,site,react,storybook -c magenta,blue,cyan,green \"pnpm:dev:toolkit:verbose\" \"pnpm:dev:site:verbose\" \"pnpm:dev:react-components:verbose\" \"pnpm storybook\"",
"dev:toolkit": "pnpm --filter=@ourfuturehealth/toolkit run watch",
"dev:toolkit:verbose": "pnpm --filter=@ourfuturehealth/toolkit run watch:verbose",
"dev:site": "pnpm --filter=site run watch",
"dev:site:verbose": "pnpm --filter=site run watch:verbose",
"dev:react-components": "pnpm --filter=@ourfuturehealth/react-components run watch",
"dev:react-components:verbose": "pnpm --filter=@ourfuturehealth/react-components run watch:verbose",
"dev:react-consumer": "concurrently -n lib,app -c cyan,green \"pnpm --filter=@ourfuturehealth/react-components watch:lib\" \"pnpm --filter=@ourfuturehealth/example-react-consumer-app watch\"",
"dev:react-consumer:verbose": "concurrently -n lib,app -c cyan,green \"pnpm --filter=@ourfuturehealth/react-components watch:lib:verbose\" \"pnpm --filter=@ourfuturehealth/example-react-consumer-app watch:verbose\"",
"storybook": "pnpm --filter=@ourfuturehealth/react-components run storybook",
"storybook:verbose": "pnpm --filter=@ourfuturehealth/react-components run storybook:verbose",
"build": "pnpm -r --filter='./packages/*' --if-present run build",
"lint": "pnpm -r --filter='./packages/*' --if-present run lint",
"lint:toolkit": "pnpm --filter=@ourfuturehealth/toolkit run lint",
"lint:site": "pnpm --filter=site run lint",
"lint:react-components": "pnpm --filter=@ourfuturehealth/react-components run lint",
"lint:react-consumer": "pnpm --filter=@ourfuturehealth/example-react-consumer-app run lint",
"test": "pnpm -r --filter='./packages/*' --if-present run test",
"test:toolkit": "pnpm --filter=@ourfuturehealth/toolkit run test",
"test:react-components": "pnpm --filter=@ourfuturehealth/react-components run test"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"concurrently": "^7.6.0",
"eslint": "^9.39.1",
"globals": "^15.9.0",
"husky": "^9.1.7",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.10.0",
"turbo": "^2.8.4"
},
"files": [
"dist",
"packages"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ourfuturehealth/design-system-toolkit.git"
},
"license": "MIT"
}