-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.31 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
{
"name": "root",
"version": "0.0.0",
"packageManager": "yarn@1.22.22",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"build": "yarn build:packages && yarn build:website",
"build:packages": "lerna run build --include-dependencies --no-private",
"build:website": "yarn workspace website build",
"build:website:baseUrl": "yarn workspace website build:baseUrl",
"build:website:fast": "yarn workspace website build:fast",
"canary": "yarn canary:bumpVersion && yarn canary:publish",
"canary:version": "echo 0.0.0-`git rev-list --count HEAD`+`git rev-parse --short HEAD`",
"canary:bumpVersion": "yarn lerna version `yarn --silent canary:version` --force-publish --exact --no-push --yes --no-private",
"canary:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-private",
"clear": "(yarn workspace website clear || echo 'Failure while running docusaurus clear') && lerna exec --ignore docusaurus -- yarn rimraf lib",
"clear:website": "yarn workspace website clear",
"crowdin:download:website": "crowdin download --config ./crowdin-v2.yaml",
"crowdin:upload:website": "crowdin upload sources --config ./crowdin-v2.yaml",
"format": "prettier --write .",
"format:diff": "prettier --list-different .",
"postinstall": "yarn build:packages",
"lerna": "lerna",
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --cache --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx,mjs}\"",
"lint:js:fix": "eslint --cache --report-unused-disable-directives --fix \"**/*.{js,jsx,ts,tsx,mjs}\"",
"lint:style": "stylelint \"**/*.css\"",
"lint:style:fix": "stylelint --fix \"**/*.css\"",
"prettier": "prettier",
"release:bumpVersion": "yarn lerna version --no-private --force-publish --no-push -m",
"serve:website": "yarn workspace website serve",
"start": "yarn build:packages && yarn start:website",
"start:website": "yarn workspace website start",
"start:website:baseUrl": "yarn workspace website start:baseUrl"
},
"devDependencies": {
"@crowdin/cli": "^3.13.0",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.197",
"@types/node": "^18.16.19",
"@types/postcss-import": "^14.0.3",
"@types/prompts": "^2.4.4",
"@types/react": "^19.2.10",
"@types/react-dev-utils": "^9.0.11",
"@types/react-dom": "^19.2.3",
"@types/react-test-renderer": "^18.0.0",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-40c6c23-20250301",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regexp": "^1.15.0",
"lerna": "^9.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^2.8.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"typescript": "~5.8.2"
},
"resolutions": {
"**/@types/react": "^19.2.10",
"**/@types/react-dom": "^19.2.3"
}
}