-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "mail-bridge",
"version": "0.0.1",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "eslint --fix --no-error-on-unmatched-pattern --ignore-path .gitignore --ext ts,tsx,js,jsx .",
"format": "prettier --write --no-error-on-unmatched-pattern --ignore-path .gitignore . --ext ts,tsx,js,jsx,json,md"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"@types/eslint": "^8.44.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"hygen": "^6.2.11",
"patch-package": "^7.0.0",
"prettier": "^2.5.1",
"turbo": "latest",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"💡 feat": {
"title": "feat",
"description": "A new feature"
},
"🧩 refactor": {
"title": "Refactor",
"description": "A code change that neither fixes a bug nor adds a feature "
},
"🛠️ fix": {
"title": "Fix",
"description": "A bug fix "
},
"📝 docs": {
"title": "Documentation",
"description": "Documentation only changes"
},
"🖌️ style": {
"title": "Style",
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
}
}
}
},
"dependencies": {
"@types/lodash": "^4.14.195",
"lodash": "^4.17.21"
}
}