-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"prepare": "manypkg check && husky install",
"start": "turbo run start --parallel --no-cache",
"build": "turbo run build",
"test": "turbo run test",
"publish-local": "ultra -r yalc publish",
"templates": "ultra -r --filter 'esdx-starter-*'",
"lint": "yarn eslint .",
"format": "prettier \"**/*\" --write --ignore-unknown"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@manypkg/cli": "^0.21.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"turbo": "^1.10.14",
"typescript": "^5.2.2",
"ultra-runner": "^3.10.5",
"yalc": "^1.0.0-pre.53"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
},
"resolutions": {
"@types/react": "^17.0.20"
},
"packageManager": "yarn@3.6.3"
}