-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.76 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
80
81
{
"name": "holo-monorepo",
"version": "1.1.0",
"private": true,
"workspaces": [
"./docs",
"./packages/components/core/*",
"./packages/components/forms/*",
"./packages/components/media/*",
"./packages/src/**/*",
"./packages/lib",
"./packages/",
"./packages/storybook"
],
"scripts": {
"build": "yarn turbo build",
"build-storybook": "cd packages/storybook && yarn build-storybook",
"clean": "yarn run clean:dist && yarn run clean:turbo && yarn run clean:modules",
"clean:dist": "yarn manypkg exec rm -rf dist",
"clean:turbo": "yarn manypkg exec rm -rf .turbo",
"clean:modules": "yarn manypkg exec rm -rf node_modules && rm -rf node_modules",
"check:dep": "yarn depcheck",
"chromatic": "npx chromatic",
"dev": "yarn turbo dev --concurrency=100 --continue",
"docs": "cd docs && yarn dev",
"fix": "manypkg fix",
"postinstall": "yarn build",
"pre-release": "yarn build && yarn changeset add",
"release": "yarn build && yarn changeset publish",
"sort:pkg": "yarn manypkg exec npx sort-package-json package.json",
"storybook": "cd packages/storybook && npx storybook dev -p 6006",
"test": "run test:jest && echo \"[ finish JEST ==> start PLAYWRIGHT ]\" && run test:pw",
"test:jest": "jest --no-cache",
"test:pw": "playwright test",
"version": "yarn changeset version && yarn install --mode update-lockfile"
},
"resolutions": {
"@manypkg/cli": "^0.19.1",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dismissable-layer": "1.0.5",
"cmdk": "0.2.1",
"eslint-plugin-react-hooks": "<5",
"react-refresh": "^0.14.0"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@changesets/cli": "^2.27.5",
"@manypkg/cli": "^0.21.4",
"@playwright/test": "^1.44.1",
"@testing-library/react": "^15.0.7",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.9.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"check-dependency-version-consistency": "^4.1.0",
"chromatic": "^11.5.3",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-uidu": "^0.9.6",
"eslint-plugin-mdx": "^3.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.44.1",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"react": "^18.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"turbo": "^2.0.3",
"typescript": "^5.4.5"
},
"packageManager": "yarn@4.1.1"
}