generated from onebeyond/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 932 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
{
"name": "@local/poc-conventional-commits",
"version": "0.0.1",
"description": "",
"main": "",
"author": {
"name": "Carlos Serrano",
"url": "https://github.com/carpasse"
},
"repository": {
"type": "git",
"url": "https://github.com/carpasse/poc-conventional-commits.git"
},
"scripts": {
"infra:start": "docker compose up -V -d",
"infra:stop": "docker compose down",
"infra:reset": "npm run infra:stop && rimraf ./storage && docker volume prune -f && docker container prune -f",
"git:delete-tags": "git fetch && git push origin --delete $(git tag -l) && git tag -d $(git tag -l)",
"git:rm-last-commit": "git reset --hard HEAD^ && git push origin -f",
"lint": "echo \"This project has no linting\"",
"test": "echo \"This project has no tests\"",
"build": "echo \"This project has no build\""
},
"license": "MIT",
"devDependencies": {
"rimraf": "^4.1.2"
}
}