@controlla/cli
Version:
Command line interface for rapid Controlla projects development
39 lines (38 loc) • 1.15 kB
JSON
{
"name": "@controlla/{{ name }}",
"description": "{{ description }}",
"version": "1.0.0",
"scripts": {
"start": "cd frontend && npm run start",
"serve": "concurrently \"php artisan serve\" \"cd frontend && npm run serve\"",
"update": "git add . && git commit -m 'docs: update' && standard-version && git push --follow-tags",
"lint": "cd frontend && npm run lint",
"test": "cd frontend && npm run test",
"test:e2e": "cd frontend && npm run test:e2e",
"test:unit": "cd frontend && npm run test:unit",
"new:component": "cd frontend && npm run new:component",
"new:component2": "cd frontend && npm run new:componen2"
},
"author": "Controlla <contacto@controlla.com.mx>",
"license": "EULA",
"dependencies": {
"concurrently": "^6.2.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"husky": "^3.1.0",
"standard-version": "^6.0.1"
},
"standard-version": {
"skip": {
"tag": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}