-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.82 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
{
"name": "darkmagic",
"private": true,
"version": "0.0.0",
"license": "MIT",
"author": "Stephan Meijer",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"clean": "manypkg exec yarn clean",
"start": "turbo run start --parallel --no-cache",
"start:example": "yarn --cwd example && yarn --cwd example start",
"start:storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"start:playroom": "playroom start --config .playroom/playroom.config.cjs",
"build": "run-s build:packages build:storybook build:playroom",
"build:packages": "turbo run build",
"build:example": "yarn --cwd example && yarn --cwd example build",
"build:storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook build -o dist/storybook && node .storybook/post-build.js",
"build:playroom": "cross-env NODE_OPTIONS=--openssl-legacy-provider playroom build --config .playroom/playroom.config.cjs",
"lint": "run-s lint:*",
"lint:typescript": "tsc --build",
"lint:eslint": "eslint --fix .",
"test": "vitest -c scripts/vite/vite.config.js --run --coverage",
"test:watch": "vitest -c scripts/vite/vite.config.js",
"test:ci": "cross-env CI=true vitest -c scripts/vite/vite.config.js --passWithNoTests",
"postinstall": "husky && node scripts/sync-paths.js && manypkg check",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "yarn build && yarn prettier --write '{packages,example}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && changeset publish",
"console": "ts-node"
},
"lint-staged": {
"*.{md,json,yml,yaml}": [
"prettier -w"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@babel/core": "^7.26.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.28.0",
"@manypkg/cli": "^0.22.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@storybook/addon-essentials": "^8.6.0",
"@storybook/addon-links": "^8.6.0",
"@storybook/addon-themes": "^8.6.0",
"@storybook/core-common": "8.6.0",
"@storybook/manager-api": "^8.6.0",
"@storybook/preview-api": "^8.6.0",
"@storybook/react": "^8.6.0",
"@storybook/react-vite": "^8.6.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vanilla-extract/babel-plugin-debug-ids": "^1.2.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-c8": "^0.33.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.1.4",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"npm-run-all2": "^7.0.1",
"playroom": "^0.39.0",
"postcss": "^8.5.1",
"prettier": "^3.5.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"replace-in-files": "^3.0.0",
"rimraf": "^6.0.1",
"rollup-plugin-analyzer": "^4.0.0",
"size-limit": "^11.0.0",
"storybook": "^8.6.0",
"tailwindcss": "^3.4.17",
"tiny-glob": "^0.2.9",
"tslib": "^2.8.1",
"tsx": "^4.19.0",
"turbo": "^1.13.0",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-banner": "^0.8.0",
"vitest": "^3.0.4",
"vitest-github-actions-reporter": "^0.11.1"
}
}