-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
109 lines (109 loc) · 3.11 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
109
{
"name": "@axelor/ui",
"version": "0.3.5",
"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.14",
"@fluentui/react-context-selector": "^9.1.69",
"@material-symbols/font-400": "^0.27.2",
"@material-symbols/metadata": "^0.27.2",
"@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",
"@eslint/js": "^9.16.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@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",
"@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",
"globals": "^15.13.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.3",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"storybook": "^8.4.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.3.0"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"@eslint/*"
]
}
}
}