-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.77 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
{
"name": "@autoline/core",
"private": true,
"engines": {
"node": ">=16 <=18",
"yarn": ">=1 <2"
},
"scripts": {
"lint:editorconfig": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:shared:js": "cd shared && yarn lint:js",
"lint:backend:js": "cd backend && yarn lint:js",
"lint:frontend:css": "cd frontend && yarn lint:css",
"lint:frontend:js": "cd frontend && yarn lint:js",
"lint:css": "yarn lint:frontend:css",
"lint:js": "yarn lint:shared:js && yarn lint:backend:js && yarn lint:frontend:js",
"lint": "yarn lint:editorconfig && yarn lint:fs && yarn lint:css && yarn lint:js",
"install:shared": "cd shared && yarn",
"install:backend": "cd backend && yarn",
"install:frontend": "cd frontend && yarn",
"install:all": "yarn && yarn install:shared && yarn build:shared && yarn install:frontend",
"build:shared": "cd shared && yarn build",
"build:backend": "cd backend && yarn build",
"build:frontend": "cd frontend && yarn build",
"build": "yarn build:shared && yarn build:backend && yarn build:frontend"
},
"dependencies": {},
"devDependencies": {
"@ls-lint/ls-lint": "1.11.2",
"@types/node": "17.0.45",
"@typescript-eslint/eslint-plugin": "5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"editorconfig-checker": "4.0.2",
"eslint": "8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"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"
}
}