-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.95 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
{
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@talend/eslint-config": "^14.0.0",
"@talend/scripts-config-babel": "^13.8.0",
"@talend/scripts-config-prettier": "^12.5.0",
"@talend/scripts-core": "^18.0.0",
"@talend/scripts-yarn-workspace": "^2.3.0",
"baseline-browser-mapping": "^2.9.19",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.6",
"eslint": "^9.39.3",
"husky": "^8.0.3",
"i18next-scanner": "^4.6.0",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
},
"scripts": {
"postinstall": "talend-yarn-workspace run build:lib && talend-yarn-workspace run build:lib:esm",
"pre-release": "talend-yarn-workspace run pre-release",
"start": "yarn workspace @talend/ui-playground run start",
"start-storybook": "yarn workspace @talend/ui-storybook-one run start",
"release": "yarn pre-release && yarn changeset publish",
"lint-staged": "lint-staged",
"lint": "cross-env WORKSPACE_RUN_FAIL=no-bail talend-yarn-workspace run lint",
"lint-merge-report": "talend-scripts lint-merge-report",
"test": "cross-env TZ=UTC talend-yarn-workspace run test",
"test:update": "cross-env TZ=UTC talend-yarn-workspace run test:update",
"test:cov": "cross-env TZ=UTC talend-yarn-workspace run test:cov",
"test:demo": "talend-yarn-workspace run test:demo",
"test:cron": "talend-yarn-workspace run test:cron",
"start-one": "yarn workspace @talend/ui-storybook-one run start",
"start-components": "yarn workspace @talend/react-components run start",
"start-containers": "yarn workspace @talend/react-containers run start",
"start-dataviz": "yarn workspace @talend/react-dataviz run start",
"start-design-system": "yarn workspace @talend/design-system run start",
"start-stepper": "yarn workspace @talend/react-stepper run start",
"start-forms": "yarn workspace @talend/react-forms run start",
"start-theme": "yarn workspace @talend/bootstrap-theme run start",
"start-icons": "yarn workspace @talend/icons run start-storybook",
"changelog": "git log --pretty=\"format:%C(bold green)%ad%C(reset) %s\" --date=short --color",
"prepare": "husky install"
},
"resolutions": {
"**/ace-builds": "1.10.1",
"**/@types/react": "^18.2.7",
"**/@types/react-dom": "^18.2.7",
"**/vinyl-fs/glob-parent": "^5.1.2",
"**/fast-glob/glob-parent": "^5.1.2",
"**/trim": "^1.0.1",
"**/x-default-browser": "^0.5.2",
"**/reactour/prop-types": "^15.7.2",
"**/qs": ">=6.14.1",
"**/tar": ">=7.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"tools/*",
"fork/*"
],
"lint-staged": {
"*.{json,md,mdx,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"tar": ">=7.5.8"
}
}