-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"private": true,
"name": "@globis/frontend-standard",
"version": "1.3.5",
"description": "standard configuraton for frontend development at globis",
"license": "MIT",
"homepage": "https://github.com/globis-org/frontend-standard#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/globis-org/frontend-standard.git"
},
"bugs": {
"url": "https://github.com/globis-org/frontend-standard/issues"
},
"scripts": {
"fix": "run-s fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint . --cache",
"lint:prettier": "prettier . --check",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "yarn workspaces run test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"eslint": "8.56.0",
"husky": "4.3.8",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"prettier-package-json": "2.8.0",
"shipjs": "0.26.3",
"typescript": "5.3.3"
},
"keywords": [
"es",
"globis",
"jsx",
"lint",
"react",
"typescript"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"package.json": [
"prettier-package-json --write"
]
}
}