Created
July 23, 2019 09:14
-
-
Save kudaliar032/2dcf93ee282819b65576e2997d124803 to your computer and use it in GitHub Desktop.
package.json artikel ci/cd example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "appname", | |
| "version": "0.1.0", | |
| "private": true, | |
| "dependencies": { | |
| "react": "^16.8.6", | |
| "react-dom": "^16.8.6", | |
| "react-scripts": "3.0.1", | |
| "serve": "^11.1.0" | |
| }, | |
| "scripts": { | |
| "dev": "react-scripts start", | |
| "heroku-postbuild": "npm run build", | |
| "start": "serve -s build", | |
| "build": "react-scripts build", | |
| "test": "CI=true react-scripts test", | |
| "eject": "react-scripts eject" | |
| }, | |
| "eslintConfig": { | |
| "extends": "react-app" | |
| }, | |
| "browserslist": { | |
| "production": [ | |
| ">0.2%", | |
| "not dead", | |
| "not op_mini all" | |
| ], | |
| "development": [ | |
| "last 1 chrome version", | |
| "last 1 firefox version", | |
| "last 1 safari version" | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment