-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
{
"name": "datepicker",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*"
]
},
"type": "module",
"scripts": {
"commit": "git-cz",
"commit:all": "git add . && git-cz",
"prepare": "husky install",
"build:dp": "npm run build --workspace @bryanberger/datepicker",
"build:dev:dp": "npm run build --watch --workspace @bryanberger/datepicker",
"dev:docs": "npm run dev --workspace www",
"build:docs": "npm run build --workspace www"
},
"validate-branch-name": {
"pattern": "^(main|development|develop|staging){1}$|^(feat|fix|hotfix|release|chore|changeset-release)/.+$",
"errorMsg": "Please, set a valid branch name."
},
"git-precommit-checks": {
"display": {
"offendingContent": true,
"shortStats": true
},
"rules": [
{
"nonBlocking": "true",
"message": "You've got leftover `console.log`",
"regex": "^(?!.*//).*console\\.log\\("
},
{
"message": "You've got leftover conflict markers",
"regex": "/^[<>|=]{4,}/m"
},
{
"filter": "^package\\.json$",
"message": "You have unfinished devs",
"nonBlocking": "true",
"regex": "/(?:FIXME|TODO)/i"
}
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"repository": {
"type": "git",
"url": "[email protected]:BryanBerger98/datepicker.git"
},
"homepage": "https://datepicker.bryanberger.dev/",
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.1",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"commitizen": "^4.3.0",
"eslint": "^8.49.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"git-precommit-checks": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"typescript": "^5.2.2",
"validate-branch-name": "^1.3.0"
}
}