-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 2.07 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
{
"name": "bws",
"private": "true",
"engines": {
"node": ">=16 <17",
"npm": ">=8 <9"
},
"scripts": {
"lint:editorconfig": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:shared:js": "cd shared && npm run lint:js",
"lint:shared": "cd shared && npm run lint",
"lint:tests:js": "cd tests && npm run lint:js",
"lint:tests": "cd tests && npm run lint",
"lint:backend:js": "cd backend && npm run lint:js",
"lint:backend": "cd backend && npm run lint",
"lint:frontend:css": "cd frontend && npm run lint:css",
"lint:frontend:js": "cd frontend && npm run lint:js",
"lint:frontend": "cd frontend && npm run lint",
"lint:css": "npm run lint:frontend:css",
"lint:js": "npm run lint:shared:js && npm run lint:tests:js && npm run lint:backend:js && npm run lint:frontend:js",
"lint": "npm run lint:editorconfig && npm run lint:fs && npm run lint:css && npm run lint:js",
"install:shared": "cd shared && npm install --production=false",
"install:tests": "cd tests && npm install --production=false",
"install:frontend": "cd frontend && npm install --production=false",
"install:backend": "cd backend && npm install --production=false",
"install:all": "npm install && npm run install:shared && npm run install:tests && npm run build:shared && npm run install:frontend && npm run install:backend",
"build:shared": "cd shared && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"build": "npm run build:frontend && npm run build:backend"
},
"devDependencies": {
"@ls-lint/ls-lint": "1.10.0",
"@typescript-eslint/eslint-plugin": "5.9.1",
"editorconfig-checker": "4.0.2",
"eslint": "8.6.0",
"eslint-import-resolver-alias": "1.1.2",
"lint-staged": "12.1.7",
"prettier": "2.5.1",
"simple-git-hooks": "2.7.0",
"stylelint": "14.2.0",
"stylelint-config-standard": "24.0.0",
"stylelint-order": "5.0.0"
},
"dependencies": {
"typescript": "4.5.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}