-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.87 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
{
"name": "@node-core/ui-components",
"type": "module",
"exports": {
"./*": [
"./*",
"./*.tsx",
"./*/index.tsx",
"./*.ts",
"./*/index.ts"
]
},
"files": [
"Common",
"Containers",
"Icons",
"styles",
"types.ts",
"stylelint"
],
"scripts": {
"check-types": "tsc --noEmit",
"lint": "turbo run lint:js lint:css",
"lint:css": "stylelint \"**/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache",
"lint:fix": "turbo run lint:js lint:css --no-cache -- --fix",
"lint:js": "eslint \"**/*.{js,mjs,ts,tsx}\"",
"storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet",
"storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --webpack-stats-json",
"test": "turbo test:unit",
"test:unit": "cross-env NODE_NO_WARNINGS=1 node --experimental-test-coverage --test-coverage-exclude=**/*.test.* --enable-source-maps --import=global-jsdom/register --import=tsx --import=../../tests/setup.mjs --test **/*.test.*",
"test:unit:watch": "cross-env NODE_OPTIONS=\"--watch\" pnpm test:unit"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "~2.1.6",
"@radix-ui/react-label": "~2.1.2",
"@radix-ui/react-select": "~2.2.2",
"@radix-ui/react-separator": "~1.1.3",
"@radix-ui/react-tabs": "~1.1.9",
"@radix-ui/react-toast": "~1.2.6",
"@radix-ui/react-tooltip": "~1.2.4",
"@tailwindcss/postcss": "~4.1.5",
"@vcarl/remark-headings": "~0.1.0",
"classnames": "~2.5.1",
"postcss-calc": "^10.1.1",
"tailwindcss": "~4.0.17"
},
"devDependencies": {
"@storybook/addon-controls": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-themes": "^8.6.12",
"@storybook/addon-viewport": "^8.6.12",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@testing-library/user-event": "~14.6.1",
"@types/node": "22.15.3",
"@types/react": "^19.1.0",
"cross-env": "^7.0.3",
"css-loader": "~7.1.2",
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-storybook": "~0.12.0",
"global-jsdom": "^26.0.0",
"postcss-loader": "~8.1.1",
"react": "^19.1.0",
"storybook": "^8.6.11",
"style-loader": "~4.0.0",
"stylelint": "^16.19.1",
"stylelint-config-standard": "^38.0.0",
"stylelint-order": "7.0.0",
"stylelint-selector-bem-pattern": "4.0.1",
"tsx": "^4.19.3",
"typescript": "~5.8.2",
"typescript-eslint": "~8.31.1"
},
"imports": {
"#ui/*": [
"./*",
"./*.tsx",
"./*/index.tsx",
"./*.ts",
"./*/index.ts"
]
},
"engines": {
"node": ">=20"
}
}