-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 2.08 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
50
51
52
53
54
55
56
{
"name": "bsa-talents",
"version": "0.0.1",
"private": "true",
"engines": {
"node": "18.x.x",
"npm": "8.x.x"
},
"workspaces": [
"shared",
"backend",
"frontend",
"mobile",
"build"
],
"scripts": {
"install:all": "npm i && npm run build:shared",
"build:shared": "npm run build -w shared",
"build:frontend": "npm run build -w frontend",
"build:backend": "npm run build -w backend",
"lint:editor": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:type": "npm run lint:type --workspaces --if-present",
"lint:js": "npm run lint:js --workspaces --if-present -- --max-warnings=0",
"lint:css": "npm run lint:css --workspaces --if-present",
"lint:prettify": "prettier --check \"**/*.{ts,tsx,json,md,scss,html}\"",
"lint": "npm run lint:editor && npm run lint:fs && npm run lint:prettify && npm run lint:type && npm run lint:js && npm run lint:css",
"prettify": "prettier --write \"**/*.{ts,tsx,json,md,scss,html}\"",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend && sh ./prepare-build.sh",
"prestart": "npm i && npm run build",
"start": "cd ./build/backend && npm run start"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@ls-lint/ls-lint": "1.11.2",
"@typescript-eslint/eslint-plugin": "6.3.0",
"danger": "11.2.8",
"editorconfig-checker": "5.1.1",
"eslint": "8.47.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-sonarjs": "0.20.0",
"eslint-plugin-unicorn": "48.0.1",
"lint-staged": "13.2.3",
"prettier": "3.0.1",
"simple-git-hooks": "2.9.0",
"stylelint": "15.10.2",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"typescript": "5.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
}
}