-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@knocklabs/telegraph",
"version": "0.0.1",
"description": "The design system at Knock",
"main": "index.js",
"repository": "https://github.com/knocklabs/telegraph",
"author": "@knocklabs",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "20.x"
},
"scripts": {
"generate:package": "moon generate package",
"dev:packages": "turbo dev --filter=\"./packages/*\" --concurrency=100",
"build:packages": "turbo build --filter=\"./packages/*\" --filter=\"!config\"",
"build:config": "turbo build --filter=\"./packages/*-config\"",
"test": "vitest run --workspace=./vitest/workspace.ts",
"test:watch": "vitest watch --workspace=./vitest/workspace.ts",
"lint": "turbo lint",
"format": "turbo format",
"format:check": "turbo format:check",
"dev:storybook": "storybook dev",
"build:storybook": "storybook build",
"release": "yarn release:publish && yarn changeset tag",
"release:publish": "yarn workspaces foreach -Rpt --no-private --from '@telegraph/*' npm publish --access public --tolerate-republish",
"postinstall": "manypkg check",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"manypkg": {
"defaultBranch": "main",
"ignoredRules": [
"INTERNAL_MISMATCH"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@manypkg/cli": "^0.21.2",
"@moonrepo/cli": "^1.28.2",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/addon-themes": "^8.1.7",
"@storybook/blocks": "^8.2.8",
"@storybook/icons": "^1.2.12",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint-plugin-turbo": "^2.0.12",
"husky": "^9.0.6",
"jsdom": "^24.1.0",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"storybook": "^7.6.17",
"storybook-addon-render-modes": "^0.0.11",
"turbo": "^1.11.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "2.0.5",
"vitest-axe": "0.1.0"
}
}