-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 3.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bsa-2022-guruhub",
"private": "true",
"engines": {
"node": ">=16 <17",
"npm": ">=8.8 <9"
},
"scripts": {
"lint:editorconfig": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:shared:js": "cd shared && npm run lint:js",
"lint:shared:type": "cd shared && npm run lint:type",
"lint:shared": "cd shared && npm run lint",
"lint:frontend:css": "cd frontend && npm run lint:css",
"lint:frontend:js": "cd frontend && npm run lint:js",
"lint:frontend:type": "cd frontend && npm run lint:type",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend:js": "cd backend && npm run lint:js",
"lint:backend:type": "cd backend && npm run lint:type",
"lint:backend": "cd backend && npm run lint",
"lint:backend:tests:js": "cd backend/tests && npm run lint:js",
"lint:backend:tests:type": "cd backend/tests && npm run lint:type",
"lint:backend:tests": "cd backend/tests && npm run lint",
"lint:mobile:js": "cd mobile && npm run lint:js",
"lint:mobile:type": "cd mobile && npm run lint:type",
"lint:mobile": "cd mobile && npm run lint",
"lint:css": "npm run lint:frontend:css",
"lint:js": "npm run lint:shared:js && npm run lint:backend:js && npm run lint:backend:tests:js && npm run lint:frontend:js && npm run lint:mobile:js",
"lint:type": "npm run lint:shared:type && npm run lint:backend:type && npm run lint:backend:tests:type && npm run lint:frontend:type && npm run lint:mobile:type",
"lint": "npm run lint:editorconfig && npm run lint:fs && npm run lint:shared && npm run lint:backend && npm run lint:backend:tests && npm run lint:mobile && npm run lint:frontend",
"install:shared": "cd shared && npm install",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"install:mobile": "cd mobile && npm install",
"install:backend:tests": "cd backend/tests && npm install",
"install:all": "npm install && npm run install:shared && npm run build:shared && npm run install:frontend && npm run install:backend && npm run install:mobile && npm run install:backend:tests",
"install:build": "cd ./build/shared/build && npm ci && cd ../../backend && npm ci",
"build:shared": "cd shared && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"update:shared": "cd ./shared && npm version patch && npm run build",
"update:shared:backend": "cd backend && npm run update:guruhub-shared",
"update:shared:backend:tests": "cd backend/tests && npm run update:guruhub-shared",
"update:shared:frontend": "cd frontend && npm run update:guruhub-shared",
"update:shared:mobile": "cd mobile && npm run update:guruhub-shared",
"update:shared:all": "npm run install:shared && npm run build:shared && npm run update:shared:backend && npm run update:shared:backend:tests && npm run update:shared:frontend && npm run update:shared:mobile",
"build": "npm run build:shared && npm run build:frontend && npm run build:backend && npm run prepare-build",
"prebuild": "npm run install:all",
"prepare-build": "sh ./prepare-build.sh",
"prestart": "npm run build && npm run install:build",
"start": "cd ./build/backend && npm start"
},
"devDependencies": {
"@ls-lint/ls-lint": "1.11.2",
"@typescript-eslint/eslint-plugin": "5.30.6",
"editorconfig-checker": "4.0.2",
"eslint": "8.19.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"simple-git-hooks": "2.8.0",
"stylelint": "14.9.1",
"stylelint-config-standard": "26.0.0",
"stylelint-order": "5.0.0",
"typescript": "4.7.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}