-
- Downloads
Fix app config
Showing
- .eslintrc 11 additions, 17 deletions.eslintrc
- .gitignore 4 additions, 1 deletion.gitignore
- app/.babelrc 0 additions, 22 deletionsapp/.babelrc
- app/babel.config.js 34 additions, 0 deletionsapp/babel.config.js
- app/components/Plot.jsx 45 additions, 46 deletionsapp/components/Plot.jsx
- app/lib/getPageContext.js 1 addition, 2 deletionsapp/lib/getPageContext.js
- app/lib/withRoot.jsx 6 additions, 4 deletionsapp/lib/withRoot.jsx
- app/next.config.js 13 additions, 2 deletionsapp/next.config.js
- app/pages/_document.jsx 4 additions, 3 deletionsapp/pages/_document.jsx
- app/pages/index.jsx 10 additions, 7 deletionsapp/pages/index.jsx
- next.js 2 additions, 2 deletionsnext.js
- package-lock.json 417 additions, 250 deletionspackage-lock.json
- package.json 14 additions, 6 deletionspackage.json
app/.babelrc
deleted
100755 → 0
app/babel.config.js
0 → 100755
This diff is collapsed.
... | ... | @@ -14,22 +14,27 @@ |
"build": "cd app && next build", | ||
"start": "npm run build && env NODE_ENV=production node app.js", | ||
"dev": "nodemon --ignore app/ app.js", | ||
"style:check": "eslint -c .eslintrc --ext .js --ext .jsx --ignore-path .gitignore .", | ||
"style:format": "npm run style:check -- --fix" | ||
"style:check": "eslint -c .eslintrc --ext .js,.jsx --ignore-path .gitignore .", | ||
"style:format": "npm run style:check -- --fix", | ||
"style:rules": "eslint --print-config .eslintrc" | ||
}, | ||
"dependencies": { | ||
"@babel/plugin-proposal-pipeline-operator": "^7.3.2", | ||
"@material-ui/core": "^3.9.3", | ||
"@zeit/next-sass": "^1.0.1", | ||
"@zeit/next-typescript": "^1.1.1", | ||
"babel-plugin-module-resolver": "^3.2.0", | ||
"babel-plugin-wrap-in-js": "^1.1.1", | ||
"body-parser": "^1.18.3", | ||
"body-parser": "^1.19.0", | ||
"cookie-parser": "^1.4.4", | ||
"express": "^4.16.4", | ||
"jss": "^9.8.7", | ||
"next": "^7.0.2", | ||
"next-compose-plugins": "^2.2.0", | ||
"next-transpile-modules": "^1.3.0", | ||
"node-sass": "^4.12.0", | ||
"plotly-js-material-design-theme": "^1.1.3", | ||
"plotly.js": "^1.47.3", | ||
"plotly.js": "^1.47.4", | ||
"prop-types": "^15.7.2", | ||
"react": "^16.8.6", | ||
"react-dom": "^16.8.6", | ||
... | ... | @@ -39,7 +44,10 @@ |
"devDependencies": { | ||
"babel-eslint": "^10.0.1", | ||
"eslint": "^5.16.0", | ||
"eslint-plugin-react": "^7.12.4", | ||
"nodemon": "^1.18.11" | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-plugin-import": "^2.17.2", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-react": "^7.13.0", | ||
"nodemon": "^1.19.0" | ||
} | ||
} |
Please register or sign in to comment