-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"clean:full": "node scripts/clean-full.mjs",
"docs": "turbo run docs",
"lint": "eslint packages scripts --ext mjs,js,ts --fix",
"format": "prettier --write \"packages/**/{src,tests}/**/*.{mjs,js,ts}\"",
"test": "vitest run",
"build": "turbo run build",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@favware/cliff-jumper": "^3.0.3",
"@favware/colorette-spinner": "^1.0.1",
"@favware/npm-deprecate": "^1.0.7",
"@joshdb/eslint-config": "2.0.0-next.fb00a2d.0",
"@joshdb/map": "2.0.0-next.f471ef7.0",
"@joshdb/prettier-config": "2.0.0-next.fb00a2d.0",
"@joshdb/ts-config": "2.0.0-next.fb00a2d.0",
"@swc/core": "^1.6.1",
"@types/node": "^20.14.2",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"colorette": "^2.0.20",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prompts": "^2.4.2",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"turbo": "^1.13.4",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josh-development/middlewares.git"
},
"engines": {
"node": ">=20",
"npm": ">=7.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"prettier": "@joshdb/prettier-config",
"packageManager": "[email protected]"
}