-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.58 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
{
"name": "leav-monorepo",
"version": "1.0.0-beta16",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"libs/*",
"test-apps/*"
]
},
"scripts": {
"test": "CI=true node ./scripts/testChangedProjects.js",
"test:ci": "",
"lint": "eslint --ext=ts,tsx --fix apps/ libs/",
"tscheck": "yarn workspaces foreach -vpA --exclude 'libs/types' run tscheck",
"license:check": "license-check-and-add check -f license-check-config.json",
"license:add": "license-check-and-add add -f license-check-config.json",
"license:remove": "license-check-and-add remove -f license-check-config.json",
"translations:check": "node ./scripts/compareTranslations.js",
"postinstall": "husky install",
"commit": "cz"
},
"dependencies": {
"@rushstack/eslint-patch": "1.1.3",
"ajv": "8.10.0",
"eslint": "8.57.0",
"prettier": "3.3.3",
"typescript": "5.5.3"
},
"devDependencies": {
"@aristid/eslint-plugin": "1.1.4",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/babel__preset-env": "^7",
"@types/jest": "29.5.12",
"@types/testing-library__jest-dom": "5.9.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-eslint": "10.1.0",
"babel-jest": "29.7.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.2.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react-hooks": "4.4.0",
"eslint-plugin-react-refresh": "0.4.3",
"husky": "6.0.0",
"jest-watch-typeahead": "2.2.0",
"license-check-and-add": "3.0.5",
"lint-staged": "10.5.3"
},
"resolutions": {
"fs-capacitor": "6.2.0",
"graphql-upload": "11.0.0",
"graphql": "16.6",
"data-studio:babel-jest": "26",
"data-studio:jest": "26.6.0",
"react-error-overlay": "6.0.9",
"@types/react": "^16",
"@types/react-dom": "^16",
"semver": "7.3.7",
"git-url-parse": "13",
"glob-parent": ">=5.1.2",
"node-fetch": "2.6.7",
"@types/express": ">=4.17.21",
"admin:react-router-dom": "5.2.0",
"admin:react-router": "5.2.0",
"admin:@types/react-router": "5.2.0"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"prettier --write",
"eslint --fix",
"license-check-and-add add -f license-check-config.json"
]
},
"packageManager": "[email protected]",
"stableVersion": "0.0.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}