-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "@express-nextjs-auth/root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"format:raw": "prettier --write --ignore-path .gitignore",
"format": "yarn format:raw '**/*.{json,vue,css,scss,less,graphql,gql,md,mdx,yml,yaml}' && yarn lint:fix",
"lint": "yarn lint:raw .",
"lint:fix": "yarn lint:raw --fix .",
"lint:raw": "eslint --max-warnings=0 --ignore-path .gitignore --ignore-pattern '!.*.*'"
},
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-lffg": "^20.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,scss,md,mdx,yml,yaml}": [
"yarn format:raw"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint:raw --fix"
]
},
"prettier": "eslint-config-lffg/prettier",
"eslintConfig": {
"extends": "lffg",
"rules": {
"import/no-default-export": "off"
}
}
}