-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.49 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.49 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
{
"name": "@talend/react-cmf",
"description": "A framework built on top of best react libraries",
"main": "lib/index.js",
"mainSrc": "src/index.js",
"license": "Apache-2.0",
"module": "./lib-esm/index.js",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js",
"types": "./cmf.d.ts"
},
"./lib/*": {
"import": "./lib-esm/*",
"require": "./lib/*",
"types": "./cmf.d.ts"
}
},
"scripts": {
"build:lib": "talend-scripts build && talend-scripts build --esm",
"start": "echo nothing to start",
"test": "vitest run",
"test:update": "vitest run --update",
"test:watch": "vitest --watch",
"test:cov": "vitest run --coverage",
"lint": "eslint -o eslint-report.json --format json ."
},
"keywords": [
"react",
"talend",
"cmf",
"framework"
],
"author": "Talend Frontend <frontend@talend.com>",
"homepage": "https://github.com/Talend/ui/tree/master/packages/cmf#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
"@talend/scripts-cmf": "^1.8.1",
"@talend/utils": "^3.7.1",
"commander": "^6.2.1",
"hoist-non-react-statics": "^3.3.2",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"lodash": "^4.17.23",
"nested-combine-reducers": "^1.2.2",
"path-to-regexp": "^8.3.0",
"prop-types": "^15.8.1",
"react-immutable-proptypes": "^2.2.0",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
"redux-batched-actions": "^0.5.0",
"redux-batched-subscribe": "^0.1.6",
"redux-saga": "^1.4.2",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@redux-saga/testing-utils": "^1.2.1",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-core": "^20.0.0",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@testing-library/react": "^14.3.1",
"eslint": "^10.0.3",
"node-fetch": "^2.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redux-mock-store": "^1.5.5",
"redux-saga-tester": "^1.0.874",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"publishConfig": {
"access": "public"
},
"version": "12.1.1"
}