-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 979 Bytes
/
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
{
"name": "cra-template-tailwindcss-typescript",
"version": "4.1.0",
"keywords": [
"react",
"create-react-app",
"template",
"tailwind",
"typescript"
],
"description": "A streamlined Tailwind CSS template for Create React App",
"main": "template.json",
"scripts": {
"commit": "git-cz",
"prepare": "husky install"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "https://github.com/dance2die/cra-template-tailwindcss-typescript"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/dance2die/cra-template-tailwindcss-typescript/issues"
},
"files": [
"template",
"template.json"
],
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}