-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "strapi-translate-monorepo",
"private": true,
"workspaces": [
"plugin",
"providers/deepl",
"providers/libretranslate",
"playground"
],
"scripts": {
"semantic-release": "semantic-release",
"commit": "cz",
"test": "yarn workspaces run test",
"lint": "eslint .",
"release": "multi-semantic-release --ignore-private-packages"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-react": "^7.23.3",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/git": "^10.0.1",
"@feki.de/semantic-release-yarn": "^1.0.1",
"conventional-changelog-conventionalcommits": "^6.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"@qiwi/multi-semantic-release": "^7.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.(js|jsx|ts|tsx)": "eslint --fix",
"*.(js|jsx|ts|tsx|json|yml|yaml|md|css|html)": "prettier -w"
}
}