-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.57 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
{
"name": "plasma-react-native",
"private": true,
"author": "Salute Frontend Team <salute.developers@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "test ! -n \"$CI\" && husky install || echo skip husky",
"lint:lerna": "npx lerna run lint --parallel --since=$(git merge-base --fork-point origin/main)",
"lint": "npm run lint:lerna",
"platform:tv": "PLATFORM='tv' ./scripts/prepare-platform.sh",
"platform:mobile": "PLATFORM='mobile' ./scripts/prepare-platform.sh",
"bootstrap": "test \"$PLATFORM\" = 'mobile' && npm run bootstrap:mobile || { test \"$PLATFORM\" = 'tv' && npm run bootstrap:tv; }",
"bootstrap:tv": "npm run platform:tv && npx lerna bootstrap",
"bootstrap:mobile": "npm run platform:mobile && npx lerna bootstrap",
"bump-version": "lerna version --conventional-commits --no-git-tag-version --no-changelog --yes",
"replace-dependencies": "./scripts/replace-dependencies.sh $PLATFORM",
"revert-bump-version": "./scripts/revert-bump-version.sh",
"set-lerna-packages": "./scripts/set-lerna-packages.sh $MODE",
"components-publish": "./scripts/components-publish.sh $PLATFORM $TAG",
"remove-package-files": "./scripts/remove-package-files.sh"
},
"devDependencies": {
"@actions/core": "1.2.7",
"@actions/github": "4.0.0",
"@auto-it/conventional-commits": "11.1.1",
"@babel/plugin-transform-react-constant-elements": "7.22.5",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@salutejs/eslint-config": "1.2.0",
"@salutejs/eslint-config-base": "0.4.0",
"@salutejs/prettier-config": "0.3.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"babel-plugin-const-enum": "1.2.0",
"babel-plugin-inline-svg": "1.2.0",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-styled-components": "1.13.2",
"eslint": ">= 8.32.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "3.2.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": ">= 2.27.4",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "3.0.0",
"fast-glob": "3.2.12",
"fs-extra": "10.0.0",
"husky": "^8.0.0",
"lerna": "6.5.1",
"lint-staged": "13.1.2",
"patch-package": "8.0.0",
"prettier": "2.0.5",
"typescript": "4.2.4"
},
"engines": {
"npm": "^8.19.0 || ^9.5.1"
}
}