Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created June 12, 2018 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DWboutin/24ee23d185a370ffa8c39acfee4af823 to your computer and use it in GitHub Desktop.
Save DWboutin/24ee23d185a370ffa8c39acfee4af823 to your computer and use it in GitHub Desktop.
{
"name": "nextjs-redux-bootstrap",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha \"tests/**/*.{js,jsx}\" --require mocha-snapshots --require ignore-styles --no-deprecation --reporter list --compilers js:babel-core/register --recursive",
"test-coverage": "NODE_ENV=test nyc --reporter=text mocha \"tests/**/*.{js,jsx}\" --recursive --reporter list --compilers js:babel-core/register --require mocha-snapshots --require ignore-styles",
"dev": "node server.js",
"build": "next build ./src",
"start": "NODE_ENV=production node server.js",
"lint": "eslint ./src/**/** --ext .js,.jsx --quiet"
},
"author": "Mikael Boutin <mikaelboutin.dw@gmail.com>",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^0.1.2",
"accepts": "^1.3.5",
"axios": "^0.18.0",
"compression": "^1.7.2",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"express": "^4.16.3",
"glob": "^7.1.2",
"intl": "^1.2.5",
"lodash": "^4.17.10",
"material-ui": "^1.0.0-beta.43",
"next": "^5.1.0",
"next-redux-wrapper": "^1.3.5",
"node-sass": "^4.9.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.3.2",
"react-grid-layout": "^0.16.6",
"react-intl": "^2.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.3.0",
"redux-form-material-ui": "^5.0.0-beta.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"ignore-styles": "^5.0.1",
"jsdom": "11.9.0",
"jsdom-global": "3.0.2",
"mocha": "^5.1.1",
"mocha-snapshots": "^4.1.0",
"nyc": "^11.7.1",
"sinon": "^4.5.0"
},
"nyc": {
"all": true,
"exclude": [
"next.config.js",
"server.js",
"./src/pages/_document.jsx",
"tests",
"coverage"
],
"compilers": [
"babel-core/register"
],
"extension": [
"js",
"jsx"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment