Skip to content

Instantly share code, notes, and snippets.

@isabelsa
Last active July 7, 2019 11:50
Show Gist options
  • Save isabelsa/8c40599975c60272b54f3351957c61b2 to your computer and use it in GitHub Desktop.
Save isabelsa/8c40599975c60272b54f3351957c61b2 to your computer and use it in GitHub Desktop.
package.json
{
"name": "automation-for-ui-kits",
"version": "0.1.0",
"main": "dist/bundle.js",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/automation/automation-for-ui-kits"
},
"dependencies": {
"YOUR_DEPENDENCIES_OF_CHOICE": "VERSION"
},
"scripts": {
"YOUR_SCRIPTS_OF_CHOICE": "VERSION",
"build": "YOUR_METHOD_OF_CHOICE",
"release": "semantic-release",
"lint": "eslint src/ --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"YOUR_DEV_DEPENDENCIES_OF_CHOICE": "VERSION",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/release-notes-generator": "^7.1.4",
"semantic-release": "^15.13.12"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment