-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.48 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": "@muravjev/configs",
"private": true,
"description": "Shared configs",
"author": "Sergey Muravjev <[email protected]> (http://github.com/muravjev)",
"license": "MIT",
"scripts": {
"clean": "rimraf \"**/node_modules\"",
"fresh": "pnpm clean && pnpm i",
"nuke": "rimraf pnpm-lock.yaml && pnpm fresh",
"format": "prettier",
"format:check": "pnpm format --check --debug-check",
"format:fix": "pnpm format --write",
"lint": "eslint --ext mjs,js,ts,tsx",
"lint:fix": "pnpm lint --fix",
"remark": "remark",
"remark:fix": "pnpm remark -o --",
"commitlint": "commitlint",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"fix": "pnpm lint:fix . && pnpm remark:fix . && pnpm format:fix . && pnpm syncpack:fix",
"prepare": "husky install"
},
"dependencies": {
"@changesets/cli": "^2.25.0",
"@commitlint/cli": "^17.1.2",
"@muravjev/configs-commitlint": "workspace: *",
"@muravjev/configs-eslint-ts": "workspace:*",
"@muravjev/configs-prettier": "workspace:*",
"@muravjev/configs-remark": "workspace:*",
"@muravjev/configs-syncpack": "workspace:*",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"remark": "^14.0.2",
"remark-cli": "^11.0.0",
"syncpack": "^8.3.9"
},
"engines": {
"node": ">=14.16.0",
"pnpm": ">=7.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "[email protected]"
}