-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "buddiesofbudgie",
"version": "1.0.0",
"description": "Buddies of Budgie documentation center and site",
"author": "BuddiesOfBudgie",
"license": "Apache-2.0",
"private": true,
"bugs": {
"url": "https://github.com/BuddiesOfBudgie/site/issues"
},
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"deploy": "turbo run deploy",
"dev": "turbo run dev --parallel",
"format": "prettier-eslint --write --prettier-last \"**/*.{js,ts,tsx,md}\"",
"lint": "turbo run lint",
"prepare": "husky install",
"test": "turbo run test"
},
"homepage": "https://github.com/BuddiesOfBudgie/site#readme",
"workspaces": [
"packages/types",
"packages/ui",
"packages/utils",
"apps/*"
],
"devDependencies": {
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "8.10.0",
"husky": "8.0.3",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"prettier-eslint": "16.3.0",
"prettier-eslint-cli": "8.0.1",
"turbo": "2.0.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"packageManager": "[email protected]",
"resolutions": {
"@rushstack/[email protected]": "patch:@rushstack/eslint-patch@npm%3A1.2.0#./.yarn/patches/@rushstack-eslint-patch-npm-1.2.0-917f402e4e.patch"
}
}