-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.51 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.51 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
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
{
"name": "@talend/design-system",
"version": "12.1.1",
"description": "Talend Design System",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "./lib-esm/index.js",
"exports": {
"./lib/*": {
"import": "./lib-esm/*/index.js",
"require": "./lib/*/index.js"
},
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"build:lib": "talend-scripts build && talend-scripts build --esm",
"watch": "talend-scripts build --watch",
"watch:esm": "talend-scripts build --watch --esm",
"test": "vitest run",
"test:update": "vitest run --update",
"test:cov": "vitest run --coverage",
"extract-i18n": "i18next-scanner --config i18next-scanner.config.js",
"lint:js": "eslint -o eslint-report.json --format json .",
"lint:css": "stylelint --formatter json -o stylelint-report.json \"**/*.css\"",
"lint": "npm run lint:js && npm run lint:css",
"start": "storybook dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Talend/ui.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"homepage": "https://design.talend.com/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@floating-ui/react": "^0.26.28",
"@talend/assets-api": "^2.1.1",
"@talend/design-tokens": "^4.1.1",
"@talend/utils": "^3.7.1",
"classnames": "^2.5.1",
"modern-css-reset": "^1.4.0",
"react-is": "^18.3.1",
"react-transition-group": "^2.9.0",
"react-use": "^17.6.0",
"react-virtualized": "^9.22.6",
"typeface-inconsolata": "^1.1.13",
"typeface-source-sans-pro": "^1.1.13"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.2.1",
"@storybook/addon-links": "^10.2.1",
"@storybook/react": "^10.2.1",
"@svgr/webpack": "^8.1.0",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/icons": "^8.0.0",
"@talend/locales-design-system": "^7.15.1",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-config-stylelint": "^5.0.0",
"@talend/scripts-core": "^20.0.0",
"@talend/storybook-docs": "^3.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/classnames": "^2.3.4",
"@types/jest-axe": "^3.5.9",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/react-is": "^18.3.1",
"@types/react-transition-group": "^2.9.2",
"@types/react-virtualized": "^9.22.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^8.2.2",
"eslint": "^10.0.3",
"focus-outline-manager": "^1.0.2",
"i18next": "^23.16.8",
"i18next-scanner": "^4.6.0",
"i18next-scanner-typescript": "^1.2.1",
"jest-axe": "^8.0.0",
"jsdom": "^26.0.0",
"mdx-embed": "^1.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.71.1",
"react-i18next": "^13.5.0",
"react-router-dom": "~6.3.0",
"stylelint": "^17.4.0",
"storybook": "^10.2.10",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@talend/icons": "^8.0.0",
"@talend/locales-design-system": "^7.15.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"i18next": "^23.16.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^13.5.0"
}
}