-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"author": "@ourchitectureio <97544811+ourchitectureio@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/ourchitecture/monorepo/issues/"
},
"description": "The single repository for all things related to Ourchitecture.",
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"markdownlint-cli2": "^0.12.1",
"prettier": "^3.2.5",
"wireit": "^0.14.4"
},
"engines": {
"node": ">=20.11.1 <21.0.0",
"npm": ">=10.4.0",
"yarn": ">=1.22.19"
},
"homepage": "https://github.com/ourchitecture/monorepo/",
"license": "MIT OR CC0-1.0",
"main": "",
"name": "@ourchitecture/monorepo",
"packageManager": "yarn@4.1.1",
"private": true,
"repository": "https://github.com/ourchitecture/monorepo/",
"scripts": {
"build:ourstage": "wireit",
"format": "prettier --write .",
"lint:md": "wireit",
"lint:ourstage": "wireit",
"lint:prettier": "wireit",
"lint": "wireit",
"test:ourstage": "wireit",
"prepare": "husky"
},
"version": "1.0.0-alpha.0",
"wireit": {
"build:ourstage": {
"command": "cd ./src/systems/dev/backstage/ourstage && yarn build"
},
"lint:md": {
"command": "markdownlint-cli2",
"files": [
"src/**/*.md"
]
},
"lint:ourstage": {
"command": "cd ./src/systems/dev/backstage/ourstage && yarn lint"
},
"lint:prettier": {
"command": "prettier --check ."
},
"lint": {
"dependencies": [
"lint:md",
"lint:prettier"
]
},
"test:ourstage": {
"command": "cd ./src/systems/dev/backstage/ourstage && yarn test"
}
},
"workspaces": [
"src/designs/**/*",
"src/systems/leadof/**/*"
]
}