-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.8 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.8 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
{
"name": "@talend/react-stepper",
"description": "Provide a stepper component",
"main": "lib/index.js",
"mainSrc": "src/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js"
},
"./lib/*": {
"import": "./lib-esm/*",
"require": "./lib/*"
}
},
"scripts": {
"build:lib": "talend-scripts build",
"build:lib:esm": "talend-scripts build --esm",
"extract-i18n": "i18next-scanner --config i18next-scanner.config.js",
"test": "vitest run",
"test:noisy": "vitest run",
"test:watch": "vitest --watch",
"test:cov": "vitest run --coverage",
"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": "talend-scripts start-storybook -p 6006",
"test:update": "vitest run --update"
},
"keywords": [
"react",
"talend",
"stepper"
],
"author": "Talend Frontend <frontend@talend.com>",
"homepage": "https://github.com/Talend/ui/tree/master/packages/stepper#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
"@talend/design-system": "^12.1.1",
"@talend/design-tokens": "^4.1.1",
"@talend/react-components": "^18.1.1",
"classnames": "^2.5.1",
"invariant": "^2.2.4",
"lodash": "^4.17.23"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@talend/icons": "^8.0.0",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-prettier": "^12.7.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@talend/scripts-config-storybook-lib": "^6.1.1",
"@talend/scripts-config-stylelint": "^5.0.0",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-core": "^20.0.0",
"@testing-library/react-hooks": "^8.0.1",
"eslint": "^10.0.3",
"stylelint": "^17.4.0",
"i18next": "^23.16.8",
"immutable": "^3.8.2",
"jsdom": "^26.1.0",
"prettier": "^3.8.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^13.5.0",
"react-redux": "^7.2.9",
"react-transition-group": "^2.9.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"i18next": "^23.16.8",
"prop-types": "^15.5.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": ">=7",
"react-i18next": "^13.5.0",
"react-transition-group": "^2.3.1"
},
"publishConfig": {
"access": "public"
},
"version": "13.1.1"
}