-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 856 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 856 Bytes
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
{
"name": "primer-playground",
"version": "0.0.0-semantic-release",
"packageManager": "yarn@4.9.1",
"workspaces": [
"packages/*",
"docs",
"examples/*"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/typescript",
"**/@types/react",
"**/@types/react-dom"
],
"scripts": {
"dev": "turbo run dev",
"lint:es": "turbo run lint",
"lint:ts": "turbo run check-types",
"format": "prettier . --write",
"lint:format": "prettier . --check",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,css,scss,html,md}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.13.0",
"turbo": "2.5.3"
}
}