/ package.json
package.json
1 { 2 "name": "ETHReport", 3 "version": "1.0.0", 4 "description": "ETHReport website", 5 "main": "index.js", 6 "scripts": { 7 "dev": "npm run transform && next", 8 "build": "npm run transform && next build", 9 "start": "npm run transform && next start", 10 "serve": "npm run transform && next build && next start", 11 "prod-build": "npm run transform && next build && next export && touch out/.nojekyll", 12 "gh-publish": "node bin/gh-pages.js", 13 "lint": "eslint \"components/**/*.js\" \"pages/*.js\"\"data/**/*.js\"", 14 "transform": "node bin/transform-json" 15 }, 16 "repository": { 17 "type": "git", 18 "url": "git+https://github.com/status-im/ETHReport.git" 19 }, 20 "author": "", 21 "license": "ISC", 22 "bugs": { 23 "url": "https://github.com/status-im/ETHReport/issues" 24 }, 25 "homepage": "https://github.com/status-im/ETHPrize#readme", 26 "dependencies": { 27 "@zeit/next-sass": "^0.2.0", 28 "html-react-parser": "^0.4.5", 29 "lodash": "^4.17.10", 30 "next": "^6.0.3", 31 "node-sass": "^4.9.1", 32 "prop-types": "^15.6.1", 33 "react": "^16.3.2", 34 "react-anchor-link-smooth-scroll": "^1.0.10", 35 "react-dom": "^16.4.2", 36 "react-headroom": "^2.2.2" 37 }, 38 "devDependencies": { 39 "babel-eslint": "^8.0.1", 40 "deploy-to-git": "^0.1.5", 41 "eslint": "^4.19.1", 42 "eslint-config-airbnb": "^16.1.0", 43 "eslint-config-prettier": "^2.9.0", 44 "eslint-plugin-import": "^2.12.0", 45 "eslint-plugin-jsx-a11y": "^6.0.3", 46 "eslint-plugin-react": "^7.9.1", 47 "gh-pages": "^1.2.0" 48 } 49 }