-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 KB
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
{
"name": "@spautz/module-federation-presentation",
"private": true,
"description": "Code to accompany a Frontend Guild talk",
"license": "MIT",
"homepage": "https://github.com/spautz/module-federation-presentation#readme",
"bugs": "https://github.com/spautz/module-federation-presentation/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spautz/module-federation-presentation.git"
},
"author": {
"name": "Steven Pautz",
"url": "https://github.com/spautz"
},
"engines": {
"node": "^22",
"pnpm": "^9"
},
"packageManager": "pnpm@9.12.1",
"type": "module",
"scripts": {
"____ HOOKS _________________________________________________________": "",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"husky:precommit": "lint-staged",
"husky:prepush": "pnpm run format:verify",
"____ INDIVIDUAL COMMANDS ___________________________________________": "",
"format": "prettier --write .",
"format:verify": "prettier --list-different ."
},
"dependencies": {},
"devDependencies": {
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3"
},
"lint-staged": {
"*.{cjs,cts,css,html,js,jsx,json,less,md,mjs,mts,scss,ts,tsx,yaml}": [
"prettier --write"
]
}
}