91 lines
2.6 KiB
JSON
91 lines
2.6 KiB
JSON
{
|
|
"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/ --coverage --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",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"*.json": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"printWidth": 80
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/thepracticaldev/dev.to_private.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/thepracticaldev/dev.to_private/issues"
|
|
},
|
|
"homepage": "https://github.com/thepracticaldev/dev.to_private#readme",
|
|
"devDependencies": {
|
|
"@storybook/addon-actions": "^3.4.6",
|
|
"@storybook/addon-links": "^3.4.6",
|
|
"@storybook/addons": "^3.4.6",
|
|
"@storybook/react": "^3.4.6",
|
|
"babel-core": "^6.26.0",
|
|
"babel-eslint": "^8.2.2",
|
|
"babel-jest": "^22.1.0",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babel-preset-preact": "^1.1.0",
|
|
"css-loader": "^0.28.11",
|
|
"eslint": "^4.9.0",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-config-airbnb-base": "^12.0.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-babel": "^5.1.0",
|
|
"eslint-plugin-ignore-erb": "^0.1.1",
|
|
"eslint-plugin-import": "^2.10.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
"eslint-plugin-react": "^7.4.0",
|
|
"faker": "^4.1.0",
|
|
"husky": "^0.14.3",
|
|
"jest": "^22.1.2",
|
|
"jest-fetch-mock": "^1.4.0",
|
|
"lint-staged": "^7.0.2",
|
|
"node-sass": "^4.9.0",
|
|
"preact-compat": "^3.18.0",
|
|
"preact-render-spy": "^1.2.1",
|
|
"preact-render-to-json": "^3.6.6",
|
|
"prettier": "^1.11.1",
|
|
"sass-loader": "^7.0.2",
|
|
"style-loader": "^0.21.0",
|
|
"webpack-dev-server": "^2.9.1"
|
|
},
|
|
"dependencies": {
|
|
"@rails/webpacker": "^3.5.3",
|
|
"@webscopeio/react-textarea-autocomplete": "^2.2.0",
|
|
"codemirror": "^5.38.0",
|
|
"intersection-observer": "^0.5.0",
|
|
"marked": "^0.4.0",
|
|
"preact": "^8.2.5",
|
|
"prop-types": "^15.6.0",
|
|
"pusher-js": "^4.2.2",
|
|
"twilio-video": "^1.10.0"
|
|
}
|
|
}
|