-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 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
{
"name": "root",
"private": true,
"workspaces": [
"benchmarks",
"packages/*",
"tests"
],
"scripts": {
"clean": "rimraf .bench \"packages/**/.tests\" \"packages/**/dist\" \"packages/**/build\" \"packages/**/.turbo\" \"packages/**/node_modules/.cache\" node_modules/.cache",
"benchmark": "tsc -b benchmarks/src && node benchmarks/dist/benchmarks/src/index.js",
"docs": "turbo run docs",
"lint": "eslint packages scripts --ext mjs,js,ts --fix",
"format": "prettier --write \"packages/**/{src,tests}/**/*.{mjs,js,ts}\"",
"test": "turbo run test",
"build": "turbo run build",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update",
"postinstall": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^8.4.1",
"@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.df53d54.0",
"@joshdb/prettier-config": "2.0.0-next.df53d54.0",
"@joshdb/ts-config": "2.0.0-next.df53d54.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.17.6",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.0",
"colorette": "^2.0.20",
"esbuild": "^0.24.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"rimraf": "^5.0.10",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"turbo": "^1.13.4",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josh-development/providers.git"
},
"engines": {
"node": ">=20",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{mjs,ts}": "eslint --fix --ext mjs,ts"
},
"prettier": "@joshdb/prettier-config",
"packageManager": "[email protected]"
}