-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 2.74 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "eslint-config-agoda",
"version": "4.6.1",
"description": "Agoda's ESLint configuration and rules",
"main": "index.js",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/agoda-com/eslint-config-agoda"
},
"bugs": {
"url": "https://github.com/agoda-com/eslint-config-agoda/issues"
},
"homepage": "https://github.com/agoda-com/eslint-config-agoda",
"keywords": [
"eslint",
"eslintconfig",
"config",
"agoda",
"javascript",
"typescript",
"styleguide",
"es2015",
"es2016",
"es2017",
"es2018",
"ts",
"react"
],
"author": "Agoda.com",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2"
},
"dependencies": {
"eslint-config-airbnb": "^19.0.4"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"react": "^18.3.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2"
},
"scripts": {
"cz": "git-cz",
"semantic-release": "semantic-release",
"test": "node node_modules/jest/bin/jest.js"
},
"release": {
"branches": [
"main",
{
"name": "next",
"channel": "next"
},
{
"name": "beta",
"channel": "beta",
"prerelease": "beta"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "breaking",
"release": "major"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"packageManager": "[email protected]"
}