-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@tucutable/source",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"tucutable": "pnpm nx run tucutable:storybook",
"tucutable:build:storybook": "pnpm nx run tucutable:build-storybook",
"tucutable:publish:storybook": "pnpm nx run tucutable:publish-storybook",
"tucutable:build": "pnpm nx run tucutable:build",
"tucutable:publish": "pnpm nx run tucutable:publish:lib",
"tucutable:install": "pnpm nx run tucutable:install:lib",
"tucutable:pack": "pnpm exec nx run tucutable:pack:lib ",
"tucutable:serve": "pnpm nx run tucutable:serve-storybook",
"demo:install": "cd apps/demo && pnpm install",
"demo": "pnpm nx run demo:dev",
"demo:build": "pnpm nx run demo:build",
"generate:props": "pnpm exec tsx scripts/generate-props.ts"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@chromatic-com/storybook": "^4.0.0",
"@chromatic-com/turbosnap-helper": "^0.4.1",
"@nx/eslint": "22.5.2",
"@nx/eslint-plugin": "22.5.2",
"@nx/jest": "22.5.2",
"@nx/js": "22.5.2",
"@nx/react": "22.5.2",
"@nx/vite": "22.5.2",
"@nx/vitest": "22.5.2",
"@nx/web": "22.5.2",
"@nx/workspace": "22.5.2",
"@storybook/addon-docs": "^9.0.0",
"@storybook/builder-vite": "^9.0.0",
"@storybook/react-vite": "^9.0.0",
"@swc-node/register": "1.11.1",
"@swc/cli": "~0.8.0",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.19",
"@testing-library/react": "16.1.0",
"@types/jest": "30.0.0",
"@types/node": "^20.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"autoprefixer": "10.4.13",
"babel-jest": "30.0.5",
"baseline-browser-mapping": "^2.10.0",
"chromatic": "^12.0.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-storybook": "^9.0.0",
"gl-matrix": "^3.4.3",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-util": "30.0.5",
"jiti": "2.6.1",
"jsdom": "~22.1.0",
"lodash": "^4.17.21",
"nx": "22.5.2",
"postcss": "8.4.38",
"prettier": "~3.6.2",
"remark-gfm": "^4.0.1",
"storybook": "^9.0.0",
"ts-jest": "29.4.4",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"vite": "7.1.9",
"vite-plugin-dts": "4.5.4",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^4.0.0",
"tailwindcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.1",
"overrides": {
"storybook": "$storybook",
"jiti": "$jiti"
},
"dependencies": {
"@tanstack/react-query": "^5.17.0",
"@tanstack/react-query-devtools": "^5.91.1",
"@types/lodash": "^4.17.21",
"react": "^19.2.6",
"react-docgen-typescript": "^2.4.0",
"react-dom": "^19.2.6"
}
}