Skip to content

Instantly share code, notes, and snippets.

@lomse
Last active October 7, 2018 21:10
Show Gist options
  • Save lomse/f5f1d17484a2815fdc0fc100699c3395 to your computer and use it in GitHub Desktop.
Save lomse/f5f1d17484a2815fdc0fc100699c3395 to your computer and use it in GitHub Desktop.
package.json - react-todo-app
{
"name": "todo-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write --single-quote --no-semi --print-width=120 --tab-width=2 \"src/**/*.{js,jsx} \"",
"lint": "eslint 'src/**/*.{js,jsx}' --quiet",
"lint:fix": "eslint '**/*.{js,jsx}' --fix",
"build": "npm run format && npm run lint && webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "4.16.3",
"react": "16.5.2",
"react-dom": "16.5.2"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"eslint": "5.6.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-config-react": "1.1.7",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"prettier": "1.14.3",
"webpack": "4.20.2",
"webpack-cli": "3.1.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment