-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "typescript-react-node-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix frontend/src && eslint --fix backend/src",
"format": "prettier --write .",
"fix": "npm run lint && npm run format && npx prisma format --schema=backend/prisma/schema.prisma",
"prepare": "husky install",
"generate": "openapi-typescript openapi/openapi.json -o ./types/openapi-types.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "tmp"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^2.8.3"
},
"dependencies": {
"openapi-typescript": "^6.7.6"
}
}