-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.96 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.96 KB
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
{
"name": "cra-template-dvhb",
"version": "1.6.0",
"description": "The base template for dvhb web app.",
"keywords": [
"react",
"create-react-app",
"template",
"typescript",
"craco"
],
"bugs": {
"url": "https://github.com/dvhb/template-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dvhb/template-react.git"
},
"license": "MIT",
"author": "dvhb team <team@dvhb.ru>",
"main": "template.json",
"files": [
"template",
"template.json"
],
"scripts": {
"lint:template": "cd template && npm run tsc && npm run lint",
"presemantic-release": "cd template && rm -rf package.json",
"semantic-release": "semantic-release",
"test": "cd template && npm i && npm run tsc && npm run lint && cp .env.example .env && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint:template",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{json,md,graphql}": [
"prettier --write",
"git add --force"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"semantic-release": "^17.0.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
},
{
"name": "with-styled-components",
"prerelease": true
}
]
}
}