-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
{
"name": "typescript-dojo",
"version": "1.0.0",
"description": "A starting point for kata using TypeScript and Jest",
"author": "Gaetan Maisse",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles",
"test:watch": "jest --watch",
"lint:eslint": "eslint -c .eslintrc.json --ext .ts src/"
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/lodash": "4.17.15",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"commitizen": "4.3.1",
"cz-emoji": "1.3.1",
"eslint": "8.57.1",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"prettier": "3.5.0",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"types": [
{
"emoji": "🌟",
"code": "feature: 🌟",
"description": "A new feature",
"name": "feature:"
},
{
"emoji": "🐛",
"code": "fix: 🐛",
"description": "A bug fix",
"name": "fix:"
},
{
"emoji": "🚓",
"code": "test: 🚓",
"description": "Testing improved with new or fixed tests",
"name": "test:"
},
{
"emoji": "🔩",
"code": "chore: 🔩",
"description": "Doesn't modify src or test files",
"name": "chore:"
},
{
"emoji": "✏️",
"code": "style: ✏️",
"description": "Doesn't affect the meaning of the code (white-space, semi-colons, etc)",
"name": "style:"
},
{
"emoji": "📚",
"code": "docs: 📚",
"description": "Documentation change",
"name": "docs:"
},
{
"emoji": "♻️",
"code": "refactor: ♻️",
"description": "Neither fixes a bug nor adds a feature",
"name": "refactor:"
},
{
"emoji": "⏪️",
"code": "revert: ️️⏪️",
"description": "Reverts a previous commit",
"name": "revert:"
}
]
}
},
"packageManager": "[email protected]"
}