-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "@newhighsco/config",
"description": "New High Score shareable configs",
"author": "New High Score",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/newhighsco/config.git"
},
"homepage": "https://github.com/newhighsco/config#readme",
"bugs": {
"url": "https://github.com/newhighsco/config/issues"
},
"packageManager": "yarn@4.17.1",
"scripts": {
"prepare": "husky",
"pretest": "yarn lint",
"test": "yarn workspaces foreach --all run test",
"lint": "concurrently 'yarn:lint:*'",
"lint:js": "eslint .",
"lint:css": "stylelint --ignore-path .gitignore '**/*.?(s)css'",
"format": "concurrently 'yarn:format:*'",
"format:js": "yarn lint:js --fix",
"format:css": "yarn lint:css --fix"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@newhighsco/commitlint-config": "*",
"@newhighsco/editor-config": "*",
"@newhighsco/eslint-config": "*",
"@newhighsco/lint-staged-config": "*",
"@newhighsco/prettier-config": "*",
"@newhighsco/release-config": "*",
"@newhighsco/stylelint-config": "*",
"@newhighsco/ts-config": "*",
"@newhighsco/yarn-plugin-preset": "1.1.4",
"@qiwi/multi-semantic-release": "7.1.2",
"concurrently": "10.0.3",
"eslint": "10.6.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"prettier": "3.9.5",
"stylelint": "17.14.0",
"typescript": "6.0.3"
},
"commitlint": {
"extends": [
"@newhighsco"
]
},
"multi-release": {
"sequentialInit": true
},
"prettier": "@newhighsco/prettier-config",
"release": {
"extends": "@newhighsco/release-config"
},
"stylelint": {
"extends": [
"@newhighsco/stylelint-config"
]
}
}