forked from skyra-project/archid-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.18 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
69
70
71
72
73
74
75
76
{
"name": "archid-components",
"description": "A collection of shared utilities for the ArchId Network",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"clean": "node scripts/clean.mjs",
"lint": "eslint packages --ext mjs,js,ts,tsx --fix",
"format": "prettier --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"test": "vitest run",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"update": "yarn upgrade-interactive",
"postinstall": "husky install .github/husky",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@favware/cliff-jumper": "^2.1.1",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^4.4.2",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@swc/core": "^1.3.67",
"@types/node": "^18.16.19",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-v8": "^0.32.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"tsup": "^7.1.0",
"turbo": "^1.10.7",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "1.2.8",
"vite@^4.3.9": "patch:vite@npm%3A4.3.9#./.yarn/patches/vite-npm-4.3.9-24f3552941.patch",
"vite@^3.0.0 || ^4.0.0": "patch:vite@npm%3A4.3.9#./.yarn/patches/vite-npm-4.3.9-24f3552941.patch",
"[email protected]": "patch:vite-node@npm%3A0.32.2#./.yarn/patches/vite-node-npm-0.32.2-84908bbb86.patch"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "@sapphire/prettier-config",
"eslintConfig": {
"extends": "@sapphire"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}