This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.01 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
{
"name": "tasa-representativa-del-mercado",
"version": "0.0.0-semantic-release",
"private": true,
"homepage": "https://www.mauriciorobayo.com/tasa-representativa-del-mercado",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.3",
"trm-api": "^1.4.6"
},
"scripts": {
"format": "prettier --write .",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "husky install && husky install"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint-config-prettier": "^8.2.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react-scripts": "^4.0.3"
},
"babelMacros": {
"styledComponents": {}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"src/**/*.js": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "build"
}
],
[
"@semantic-release/github",
{
"assets": "build/*.tgz"
}
]
]
},
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MauricioRobayo/tasa-representativa-del-mercado.git"
},
"keywords": [],
"author": "Mauricio Robayo <hi@mauriciorobayo.com> (www.mauriciorobayo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MauricioRobayo/tasa-representativa-del-mercado/issues"
},
"files": [
"build"
]
}