generated from BRAVO68WEB/typescript-express-hasura-pgsql-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 903 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": "shx",
"version": "1.2.0",
"description": "File and Data sharing Service",
"repository": "git@github.com:BRAVO68WEB/shx.git",
"author": "Jyotirmoy Bandyopadhyaya [Bravo68] <jbandyopadhayaya@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"prepare": "husky install",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint-config-prettier": "^9.0.0",
"@typescript-eslint/parser": "^5.62.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8"
}
}