{ "name": "Dev.to", "version": "1.0.0", "description": "Where programmers share ideas and help each other grow", "main": "index.js", "directories": { "doc": "docs", "lib": "lib", "test": "test" }, "scripts": { "test": "jest app/javascript/ --coverage", "test:watch": "jest app/javascript/ --watch", "storybook": "start-storybook -p 6006 -c app/javascript/.storybook -s app/javascript/.storybook/assets", "build-storybook": "build-storybook -c app/javascript/.storybook -s app/javascript/.storybook/assets" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,jsx}": [ "prettier --write", "eslint --fix", "git add" ], "{app,spec}/**/*.rb": [ "bin/rubocop --require rubocop-rspec --safe-auto-correct", "git add" ], "app/**/*.html.erb": [ "bin/bundle exec erblint", "git add" ], "*.json": [ "prettier --write", "git add" ], "*.md": [ "prettier --write", "git add" ] }, "prettier": { "singleQuote": true, "trailingComma": "all", "printWidth": 80 }, "repository": { "type": "git", "url": "git+https://github.com/thepracticaldev/dev.to.git" }, "author": "", "license": "AGPL-3.0-or-later", "bugs": { "url": "https://github.com/thepracticaldev/dev.to/issues" }, "homepage": "https://github.com/thepracticaldev/dev.to#readme", "devDependencies": { "@storybook/addon-actions": "^3.4.11", "@storybook/addon-links": "^3.4.11", "@storybook/addons": "^3.4.11", "@storybook/react": "^3.4.11", "babel-eslint": "^10.0.1", "babel-jest": "^23.4.2", "eslint": "^5.15.0", "eslint-config-airbnb": "^17.1.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-config-prettier": "^4.1.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-ignore-erb": "^0.1.1", "eslint-plugin-import": "^2.16.0", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-react": "^7.12.4", "faker": "^4.1.0", "husky": "^1.3.1", "jest": "^23.5.0", "jest-localstorage-mock": "^2.4.0", "jest-fetch-mock": "^2.1.1", "jsdom": "^13.2.0", "lint-staged": "^8.1.5", "preact-render-spy": "^1.3.0", "preact-render-to-json": "^3.6.6", "prettier": "^1.16.4", "webpack-dev-server": "^2.11.3" }, "dependencies": { "@rails/webpacker": "^3.5.5", "babel-plugin-transform-react-jsx": "^6.24.1", "babel-preset-preact": "^1.1.0", "codemirror": "^5.44.0", "intersection-observer": "^0.5.1", "linkstate": "^1.1.1", "marked": "^0.6.1", "preact": "^8.4.2", "preact-compat": "^3.18.4", "preact-textarea-autosize": "^4.0.7", "prop-types": "^15.7.2", "pusher-js": "^4.4.0", "web-share-wrapper": "^0.2.1", "twilio-video": "^1.15.2" }, "jest": { "setupFiles": ["jest-localstorage-mock"] } }