-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "@brillio-dev/react-components",
"version": "0.1.2",
"description": "Reusable React Components for building Design Systems",
"homepage": "https://github.com/brillio-dev/brillio-react-components",
"author": "Yuvaraj Thiagarajan (https://github.com/yuvaraj-thiagarajan)",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js"
}
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@chromatic-com/storybook": "^3.2.4",
"@nx/js": "20.4.0",
"@nx/storybook": "20.4.0",
"@nx/vite": "20.4.0",
"@nx/web": "20.4.0",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/addon-onboarding": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@storybook/theming": "^8.5.3",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.14",
"@swc/helpers": "^0.5.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^2.1.9",
"glob": "^11.0.1",
"nx": "20.4.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-aria-components": "latest",
"react-dom": "^18.3.1",
"storybook": "^8.5.3",
"storybook-dark-mode": "^4.0.2",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=23.7.0",
"npm": ">=11.1.0"
},
"overrides": {
"@types/mime": "3.0.4",
"jackspeak": "2.1.1"
},
"scripts": {
"storybook": "nx serve:storybook -p 6006",
"build-storybook": "nx build:storybook",
"build": "nx exec -- tsc -p ./tsconfig.build.json && vite build"
},
"nx": {}
}