-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
85 lines (85 loc) · 1.83 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
{
"name": "cra-template-rmuif",
"version": "3.6.1",
"description": "Supercharged version of Create React App with all the bells and whistles.",
"keywords": [
"react",
"create-react-app",
"template",
"rmuif",
"material-ui",
"firebase",
"react-router",
"authentication",
"authorization"
],
"homepage": "https://rmuif.com",
"bugs": {
"url": "https://github.com/rmuif/web/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Linus Långberg",
"email": "[email protected]",
"url": "https://phoqe.dev"
},
"files": [
"template",
"template.json"
],
"main": "template.json",
"repository": {
"type": "git",
"url": "https://github.com/rmuif/web.git"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/git": "^9.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"clean": "node scripts/clean.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false
}
]
]
}
}