forked from DIRACGrid/diracx-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.54 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
111
112
113
114
115
116
{
"name": "@dirac-grid/diracx-web-components",
"version": "0.1.0-a2",
"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 ./components ./contexts ./hooks ./types",
"ts-lint": "tsc -noEmit -incremental",
"prepack": "rm -rf dist && npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "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.22.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"@mui/utils": "^5.15.14",
"@types/node": "20.11.30",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"jsoncrush": "^1.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtuoso": "^4.7.10",
"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": "^1.5.0",
"@microsoft/api-extractor": "^7.43.7",
"@storybook/addon-essentials": "^8.2.1",
"@storybook/addon-interactions": "^8.2.1",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.1",
"@storybook/nextjs": "^8.2.1",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.1",
"@swc/core": "^1.7.18",
"@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",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-storybook": "^0.8.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.2.9",
"ts-jest": "^29.1.2",
"tsc-files": "^1.1.4",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"exports": {
"./package.json": "./package.json",
"./components": {
"module": "./dist/components/index.js",
"require": "./dist/components/index.cjs",
"types": "./dist/components/index.d.ts",
"default": "./dist/components/index.js"
},
"./contexts": {
"module": "./dist/contexts/index.js",
"require": "./dist/contexts/index.cjs",
"types": "./dist/contexts/index.d.ts",
"default": "./dist/contexts/index.js"
},
"./hooks": {
"module": "./dist/hooks/index.js",
"require": "./dist/hooks/index.cjs",
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
},
"./types": {
"module": "./dist/types/index.js",
"require": "./dist/types/index.cjs",
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
}
},
"files": [
"dist",
"components",
"contexts",
"hooks",
"types",
"public"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{js,ts,jsx,tsx,css,md}": "prettier --write",
"**/*.{ts,tsx}": "tsc-files --noEmit"
}
}