-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "project",
"private": "true",
"engines": {
"node": "18.x.x",
"npm": "9.x.x"
},
"workspaces": [
"shared",
"backend",
"frontend"
],
"scripts": {
"postinstall": "npm run build -w shared",
"lint:type": "npm run lint:type --workspaces --if-present",
"lint:js": "npm run lint:js --workspaces --if-present -- --max-warnings=0",
"lint:prettify": "prettier --check \"**/*.{ts,tsx,json,md,scss,html,yml}\"",
"lint": "npm run lint:prettify && npm run lint:type && npm run lint:js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.48.1",
"eslint": "8.31.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-unicorn": "46.0.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"simple-git-hooks": "2.8.1",
"tsc-alias": "1.8.2",
"typescript": "4.9.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
}
}