-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
110 lines (110 loc) · 3.3 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
110
{
"name": "@dirac-grid/diracx-web-components",
"version": "0.1.0-a3",
"repository": "https://github.com/DIRACGrid/diracx-web",
"description": "Useful components for diracx-web",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup --minify",
"dev": "tsup --watch",
"test": "jest --ci",
"lint": "eslint ./src",
"lint-staged": "lint-staged",
"ts-lint": "tsc -noEmit -incremental",
"prepack": "rm -rf dist && npm run build",
"doc": "storybook dev -p 6006",
"build-doc": "storybook build"
},
"license": "GPL-3.0",
"type": "module",
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.3.0",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3",
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.1.0",
"@axa-fr/react-oidc": "^7.24.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.1.6",
"@mui/utils": "^6.1.6",
"@mui/x-date-pickers": "^7.14.0",
"@tanstack/react-table": "^8.20.5",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"dayjs": "^1.11.13",
"jsoncrush": "^1.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtuoso": "^4.12.3",
"swr": "^2.2.5"
},
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^3.2.4",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@microsoft/api-extractor": "^7.43.7",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/addon-mdx-gfm": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/nextjs": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/test": "^8.4.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-storybook": "^0.11.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react-test-renderer": "^18.3.1",
"storybook": "^8.4.2",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.6.3"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
"./components": {
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
},
"./contexts": {
"import": "./dist/contexts/index.js",
"types": "./dist/contexts/index.d.ts"
},
"./hooks": {
"import": "./dist/hooks/index.js",
"types": "./dist/hooks/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"public"
]
}