-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
75 lines (75 loc) · 2.71 KB
/
package.json
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
{
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@talend/scripts-config-babel": "^13.5.0",
"@talend/scripts-config-prettier": "^12.2.0",
"@talend/scripts-core": "^16.5.1",
"@talend/scripts-yarn-workspace": "^2.1.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.6",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"i18next-scanner": "^4.6.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"typescript": "^5.0.4"
},
"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 --silent",
"test:update": "cross-env TZ=UTC talend-yarn-workspace run test --silent -u",
"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-components": "yarn workspace @talend/react-components run start",
"start-containers": "yarn workspace @talend/react-containers 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",
"changelog": "git log --pretty=\"format:%C(bold green)%ad%C(reset) %s\" --date=short --color",
"prepare": "husky install"
},
"resolutions": {
"**/axios": "0.28.0",
"**/ace-builds": "1.10.1",
"**/cypress": "^13.6.0",
"**/@types/react": "^18.2.7",
"**/@types/react-dom": "^18.2.7",
"**/i18next-scanner-typescript/typescript": "^5.0.4",
"**/browser-sync-client/typescript": "^5.0.4",
"**/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"
},
"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.2.7",
"@types/react-dom": "^18.2.7",
"cypress": "^13.6.0"
}
}