-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
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
77
78
79
80
81
82
83
84
85
86
{
"name": "@ourchitecture/devex",
"version": "0.0.1",
"description": "",
"keywords": [],
"author": "Ourchitecture",
"license": "MIT OR CC0-1.0",
"type": "module",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.2.4",
"pnpm": ">=8.10.5"
},
"engineStrict": true,
"packageManager": "pnpm@8.10.5",
"scripts": {
"format": "prettier --write --config ./.prettierrc.yaml --ignore-path ./.gitignore --ignore-path ./.prettierignore ./",
"prepare": "husky install",
"test": "wireit",
"test:formatting": "wireit",
"test:formatting:changes": "lint-staged",
"test:versions": "wireit"
},
"wireit": {
"test": {
"dependencies": [
"test:versions",
"test:formatting"
]
},
"test:formatting": {
"command": "node ./src/tasks/node/check/formatting.js",
"files": [
"./**/*",
"!.husky",
"!.task-output",
"!.wireit",
"!node_modules",
"!pnpm-lock.yaml",
"!./docs",
"!./src/backstage"
],
"output": [
"./.task-output/src/tasks/node/check/formatting.js/**"
]
},
"test:versions": {
"command": "node ./src/tasks/node/check/versions.js",
"files": [
"./**/package.json",
"./**/.npmrc",
"./**/.nvmrc",
"./**/.pnpmrc",
"./src/tasks/node/check/versions.js",
"!.husky",
"!.task-output",
"!pnpm-lock.yaml"
],
"output": [
"./.task-output/src/tasks/node/check/versions.js/**"
]
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"chalk": "^5.3.0",
"cli-box": "^6.0.10",
"dotenv": "^16.3.1",
"glob": "^10.3.10",
"husky": "^8.0.3",
"latest-version": "^7.0.0",
"lint-staged": "^15.1.0",
"markdownlint-cli2": "^0.10.0",
"prettier": "^3.1.0",
"semver": "^7.5.4",
"which": "^4.0.0",
"winston": "^3.11.0",
"wireit": "^0.14.1"
},
"resolutions": {
"@types/react": "^17",
"@types/react-dom": "^17",
"prettier": "^3"
}
}