-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 991 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
35
36
{
"name": "nextjs-fastify-graphql",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mpiorowski/nextjs-fastify-graphql.git",
"author": "mpiorowski <[email protected]>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-testing-library": "^4.5.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"client/src/**/*.{js,jsx,tsx,ts,md}": [
"prettier --write",
"eslint"
],
"server/src/**/*.{js,jsx,tsx,ts,md}": [
"prettier --write",
"eslint"
]
},
"scripts": {
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"pre-commit": "lint-staged"
}
}