-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "genie",
"version": "1.0.0",
"private": true,
"description": "Flexible github repository template",
"homepage": "https://github.com/natainditama/genie",
"bugs": {
"url": "https://github.com/natainditama/genie/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/natainditama/genie"
},
"author": {
"name": "natainditama",
"email": "[email protected]",
"url": "https://github.com/natainditama"
},
"license": "MIT",
"keywords": [
"github",
"starter",
"template"
],
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"prettier --ignore-path .gitignore --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"prettier-plugin-sort-json": "^4.0.0"
},
"prettier": {
"plugins": [
"prettier-plugin-sort-json"
],
"printWidth": 120,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"endOfLine": "auto"
}
}