-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
113 lines (113 loc) · 3.83 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "magicbell-root",
"private": true,
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE",
"author": "Stephan Meijer",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"clean": "manypkg exec yarn clean",
"start": "turbo run start --parallel --no-cache --filter=!playground",
"start:example": "yarn --cwd example && yarn --cwd example start",
"start:storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"start:playground": "yarn --cwd packages/playground start",
"codegen": "turbo run codegen --concurrency 1 --no-cache",
"build": "turbo run build",
"build:example": "yarn --cwd example && yarn --cwd example build",
"build:storybook": "build-storybook",
"build:docs": "yarn --cwd packages/codegen build && yarn --cwd packages/project-client build:docs && yarn --cwd packages/user-client build:docs",
"lint": "run-s lint:*",
"lint:typescript": "tsc --noEmit",
"lint:eslint": "eslint --fix .",
"format": "eslint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --ci --coverage && yarn --cwd packages/in-app test",
"postinstall": "husky && node scripts/sync-paths.js && manypkg check",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "yarn build && changeset publish",
"console": "ts-node"
},
"lint-staged": {
"*.{md,yml,yaml}": [
"prettier -w"
],
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix ."
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@babel/core": "^7.26.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@manypkg/cli": "^0.23.0",
"@octokit/rest": "^21.0.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^8.4.2",
"@storybook/addons": "^7.6.17",
"@storybook/builder-vite": "^8.5.3",
"@storybook/react": "^8.4.2",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.6.1",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/create-react-app": "^2.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.11",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"fix-esm-import-path": "^1.10.1",
"happy-dom": "^15.11.6",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"link-workspaces": "^1.1.0",
"lint-staged": "^15.2.4",
"msw": "^1.3.2",
"npm-run-all2": "^7.0.1",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"replace-in-file": "^8.3.0",
"rimraf": "^5.0.7",
"rollup-plugin-analyzer": "^4.0.0",
"size-limit": "^8.2.6",
"sort-package-json": "^2.12.0",
"tiny-glob": "^0.2.9",
"ts-jest": "^29.2.0",
"ts-morph": "^24.0.0",
"tshy": "^3.0.2",
"tslib": "^2.8.0",
"tsx": "^4.19.0",
"turbo": "^2.3.1",
"typescript": "^5.7.3",
"vite": "^5.4.0",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-replace": "^0.1.1",
"zx": "^8.2.0"
}
}