-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "@talend/react-sagas",
"version": "10.1.1",
"description": "App wide redux sagas",
"main": "lib/index.js",
"mainSrc": "src/index.js",
"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",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"lint": "eslint -o eslint-report.json --format json .",
"test:update": "vitest run --update"
},
"keywords": [
"react",
"talend",
"sagas",
"pending"
],
"author": "Talend Frontend <frontend@talend.com>",
"homepage": "https://github.com/Talend/ui/tree/master/packages/forms#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
"@talend/react-cmf": "^12.1.1",
"immutable": "^3.8.2",
"redux-saga": "^1.4.2"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-core": "^20.0.0",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}