forked from vercel/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 807 Bytes
/
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
{
"name": "examples",
"license": "MIT",
"private": true,
"engines": {
"pnpm": "9.13.0"
},
"scripts": {
"lint-staged": "lint-staged",
"new-example": "plop example",
"prepare": "husky install",
"prettier": "prettier --write ."
},
"pre-commit": "lint-staged",
"lint-staged": {
"!(**/.vercel/**/*)**/*.{ts,tsx}": [
"prettier --write",
"eslint -c .eslintrc.json --no-eslintrc --no-ignore --max-warnings=0 --fix"
],
"**/*.{json,md,mdx,css,html,yml,yaml,scss}": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "latest",
"eslint-config-next": "canary",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}