-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "@newhighsco/next",
"description": "New High Score Next.js plugins",
"author": "New High Score",
"license": "ISC",
"private": true,
"workspaces": [
"example",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/newhighsco/next.git"
},
"homepage": "https://github.com/newhighsco/next#readme",
"bugs": {
"url": "https://github.com/newhighsco/next/issues"
},
"packageManager": "yarn@4.17.1",
"scripts": {
"prepare": "husky",
"start": "yarn workspace example start",
"build": "yarn workspace example build",
"pretest": "yarn lint",
"test": "jest --runInBand",
"test:list": "jest --listTests",
"lint": "concurrently 'yarn:lint:*'",
"lint:js": "eslint --cache .",
"format": "concurrently 'yarn:format:*'",
"format:js": "yarn lint:js --fix"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@commitlint/cli": "21.2.1",
"@newhighsco/commitlint-config": "1.3.4",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "7.1.18",
"@newhighsco/prettier-config": "2.3.12",
"@newhighsco/release-config": "1.5.2",
"@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",
"jest": "30.4.2",
"jest-junit": "17.0.0",
"prettier": "3.9.5",
"semantic-release": "25.0.5"
},
"commitlint": {
"extends": [
"@newhighsco"
]
},
"multi-release": {
"sequentialInit": true
},
"prettier": "@newhighsco/prettier-config",
"release": {
"extends": "@newhighsco/release-config"
}
}