-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"private": true,
"author": {
"name": "Alexander Kachkaev",
"email": "[email protected]",
"url": "https://en.kachkaev.ru"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/terser"
]
},
"scripts": {
"build": "lerna run build",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --fix .",
"fix:markdownlint": "markdownlint --fix .",
"fix:prettier": "prettier --write .",
"fix:yarn-deduplicate": "yarn install && yarn-deduplicate --strategy=fewer && yarn install",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "eslint .",
"lint:markdownlint": "markdownlint .",
"lint:packages": "lerna run lint",
"lint:prettier": "prettier --check .",
"lint:yarn-deduplicate": "yarn-deduplicate --fail --list --strategy=fewer",
"prepare": "husky install",
"test": "lerna run test"
},
"lint-staged": {
"**": [
"eslint --fix",
"markdownlint --fix",
"prettier --write"
]
},
"resolutions": {
"@typescript-eslint/eslint-plugin": ">=4.4.1",
"@typescript-eslint/parser": ">=4.4.1",
"node-notifier": "^8.0.1"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.1",
"@parcel/transformer-react-refresh-wrap": "^2.9.1",
"@parcel/transformer-typescript-types": "^2.9.1",
"@types/deasync": "^0.1.2",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.8",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"lerna": "^7.1.4",
"lint-staged": "^13.2.2",
"markdownlint-cli": "^0.34.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.9.1",
"prettier": "^3.0.0",
"react": "^18.2.0",
"typescript": "^5.1.3",
"yarn-deduplicate": "^6.0.2"
},
"engines": {
"node": ">=14.16.0",
"yarn": "^1.22.0"
}
}