-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
94 lines (94 loc) · 3.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@emotion/eslint-plugin": "^11.10.0",
"@lerna-lite/changed": "3.10.0",
"@lerna-lite/cli": "3.10.0",
"@lerna-lite/publish": "3.10.0",
"@lerna-lite/run": "3.10.0",
"@lerna-lite/version": "3.10.0",
"@swc/core": "^1.3.10",
"@swc/jest": "^0.2.23",
"@testing-library/dom": "^10.0.0",
"@types/babel__core": "^7",
"@types/jest": "^29.2.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@wireapp/eslint-config": "workspace:^",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-dom": "^5",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "9.1.7",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "15.2.10",
"prettier": "3.3.2",
"rimraf": "6.0.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 14",
"yarn": ">= 1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.{json,md,scss,yml}": [
"prettier --write"
]
},
"prettier": "./packages/prettier-config",
"private": true,
"scripts": {
"clean": "lerna run clean --parallel",
"dist": "yarn clean && lerna run dist",
"fix": "yarn fix:other && yarn fix:code",
"fix:code": "yarn lint:code --fix --quiet",
"fix:other": "yarn prettier --write",
"lint": "yarn lint:code && yarn lint:other",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:other": "yarn prettier --list-different",
"prettier": "prettier \"**/*.{json,md,scss,yml}\"",
"new-version": "lerna version --sync-workspace-lock",
"new-publish": "lerna publish from-package",
"release": "yarn new-version && yarn new-publish",
"new-version-beta": "lerna version prerelease --sync-workspace-lock --preid ${0} --no-changelog",
"new-publish-beta": "lerna publish from-package --dist-tag beta --preid ${0}",
"beta-release": "yarn new-version-beta ${0} && yarn new-publish-beta ${0}",
"new-version-hotfix": "lerna version --sync-workspace-lock --no-changelog",
"new-publish-hotfix": "lerna publish from-package --dist-tag hotfix",
"hotfix-release": "yarn new-version-hotfix && yarn new-publish-hotfix",
"test": "lerna run build --include-dependencies --since && lerna run test --since --parallel",
"test:all": "lerna run test",
"test:coverage": "lerna run test:coverage",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"license-checker": "25.0.1"
},
"packageManager": "[email protected]"
}