forked from axelor/axelor-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.05 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
{
"name": "@axelor/ui",
"version": "0.3.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"keywords": [
"react",
"components",
"ui",
"axelor"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./*": "./src/*/index.ts",
"./core/*": "./src/core/*/index.ts",
"./icons/*": "./src/icons/*/index.ts"
},
"scripts": {
"preinstall": "node scripts/check-pnpm.js",
"format": "prettier -w '**/*.{ts,tsx,js,jsx,json,css,scss}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "node scripts/build.js . -o dist",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"lint": "eslint src"
},
"peerDependencies": {
"react": "^18.3.1-0",
"react-dom": "^18.3.1-0"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@floating-ui/react": "^0.26.28",
"@fluentui/priority-overflow": "^9.1.13",
"@fluentui/react-context-selector": "^9.1.69",
"@material-symbols/font-400": "^0.27.0",
"@material-symbols/metadata": "^0.27.0",
"@types/qrcode": "^1.5.5",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"color": "^4.2.3",
"csstype": "^3.1.3",
"dayjs": "^1.11.13",
"focus-trap": "^7.6.2",
"immer": "^10.1.1",
"jsbarcode": "^3.11.6",
"qrcode": "^1.5.4",
"react-beautiful-dnd": "^13.1.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/test": "^8.4.5",
"@types/color": "^4.2.0",
"@types/node": "^22.9.1",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.1",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"commander": "^12.1.0",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"i18next": "^23.16.8",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"storybook": "^8.4.5",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.3.0"
},
"packageManager": "[email protected]+sha256.06e65a4965baff6d6097f9c8f75c35f6d420974dbc03d775009056a69edfd271",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"@eslint/*"
]
}
}
}