-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.09 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
45
46
47
48
49
{
"name": "web13",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"lint": "eslint --cache --fix .",
"format": "prettier --cache --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nestjs/cli": "^10.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"frontend/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"backend/**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"g": "^2.0.1",
"pnpm": "^9.13.2",
"redis": "^4.7.0",
"web13": "file:"
},
"packageManager": "[email protected]"
}