-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@newhighsco/next-plugin-svgr",
"description": "Next.js plugin for transforming SVGs into React components using SVGR",
"version": "3.0.144",
"author": "New High Score",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/newhighsco/next-plugin-svgr.git"
},
"homepage": "https://github.com/newhighsco/next-plugin-svgr#readme",
"bugs": {
"url": "https://github.com/newhighsco/next-plugin-svgr/issues"
},
"main": "src/index.js",
"files": [
"src/webpack.js"
],
"scripts": {
"prepare": "husky",
"pretest": "yarn lint",
"test": "concurrently yarn:test:*",
"test:js": "jest --coverage",
"lint": "concurrently yarn:lint:*",
"lint:js": "eslint --cache --ignore-path .gitignore .",
"format": "concurrently yarn:format:*",
"format:js": "yarn lint:js --fix"
},
"dependencies": {
"@svgr/webpack": "8.1.0",
"file-loader": "6.2.0",
"url-loader": "4.1.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "19.5.0",
"@newhighsco/commitlint-config": "1.1.43",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "4.0.231",
"@newhighsco/prettier-config": "2.1.26",
"@newhighsco/release-config": "1.3.94",
"babel-jest": "29.7.0",
"concurrently": "9.0.1",
"eslint": "8.57.1",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0"
},
"peerDependencies": {
"next": "15.0.2"
},
"commitlint": {
"extends": [
"@newhighsco"
]
},
"eslintConfig": {
"extends": [
"@newhighsco"
]
},
"prettier": "@newhighsco/prettier-config",
"release": {
"extends": "@newhighsco/release-config",
"branches": [
"main"
]
},
"renovate": {
"extends": [
"local>newhighsco/.github:renovate-config"
],
"packageRules": [
{
"extends": [
"monorepo:nextjs"
],
"semanticCommitType": "fix"
}
]
}
}