-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.6 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
{
"name": "@talend/react-flow-designer",
"description": "Flow designer for react and redux",
"version": "8.1.1",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"mainSrc": "src/index.js",
"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",
"lint": "eslint -o eslint-report.json --format json .",
"test": "vitest run",
"test:update": "vitest run --update",
"test:cov": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"author": "Talend <frontend@talend.com>",
"license": "Apache-2.0",
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@talend/babel-plugin-import-from-index": "^1.13.1",
"@talend/babel-plugin-assets-api": "^1.9.1",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-core": "^20.0.0",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@testing-library/react": "^14.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/d3": "^7.4.3",
"@types/invariant": "^2.2.37",
"@types/lodash": "^4.17.23",
"@types/node": "^6.14.13",
"@types/prop-types": "^15.7.15",
"@types/react": "^18.3.27",
"@types/react-redux": "^7.1.34",
"@types/react-test-renderer": "^18.3.1",
"@types/redux-mock-store": "^1.5.0",
"@types/redux-thunk": "^2.1.0",
"eslint": "^10.0.3",
"i18next": "^23.16.8",
"immutable": "^3.8.2",
"lodash": "^4.17.23",
"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-test-renderer": "^18.3.1",
"redux": "^4.2.1",
"redux-mock-store": "^1.5.5",
"redux-thunk": "^2.4.2",
"reselect": "^4.1.8",
"vitest": "^4.0.18"
},
"peerDependencies": {
"immutable": "3",
"lodash": "^4.17.23",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
"reselect": "^4.1.8"
},
"dependencies": {
"@talend/design-tokens": "^4.1.1",
"classnames": "^2.5.1",
"d3": "^7.9.0",
"invariant": "^2.2.4",
"prop-types": "^15.8.1",
"react-immutable-proptypes": "^2.2.0"
},
"files": [
"/dist",
"/lib",
"/lib-esm",
"/src"
],
"publishConfig": {
"access": "public"
}
}