|
| 1 | +{ |
| 2 | + "name": "react-component-library-lerna", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Example setup of a react-component library managed with lerna", |
| 5 | + "private": true, |
| 6 | + "scripts": { |
| 7 | + "bootstrap": "lerna bootstrap", |
| 8 | + "clean": "lerna clean", |
| 9 | + "lint": "lerna run lint --stream --parallel", |
| 10 | + "start": "start-storybook -p 9001 -c .storybook --ci", |
| 11 | + "test": "echo \"Error: no test specified\" && exit 1" |
| 12 | + }, |
| 13 | + "husky": { |
| 14 | + "hooks": { |
| 15 | + "pre-commit": "lint-staged" |
| 16 | + } |
| 17 | + }, |
| 18 | + "lint-staged": { |
| 19 | + "*.js": [ |
| 20 | + "prettier --write", |
| 21 | + "git update-index --again" |
| 22 | + ] |
| 23 | + }, |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "git+https://github.com/natterstefan/react-component-library-lerna.git" |
| 27 | + }, |
| 28 | + "workspaces": { |
| 29 | + "packages": [ |
| 30 | + "packages/*" |
| 31 | + ], |
| 32 | + "nohoist": [ |
| 33 | + "**/react-*", |
| 34 | + "**/react-*/**" |
| 35 | + ] |
| 36 | + }, |
| 37 | + "keywords": [ |
| 38 | + "lerna" |
| 39 | + ], |
| 40 | + "author": "Stefan Natter", |
| 41 | + "license": "MIT", |
| 42 | + "bugs": { |
| 43 | + "url": "https://github.com/natterstefan/react-component-library-lerna/issues" |
| 44 | + }, |
| 45 | + "homepage": "https://github.com/natterstefan/react-component-library-lerna#readme", |
| 46 | + "devDependencies": { |
| 47 | + "@babel/core": "^7.2.2", |
| 48 | + "@storybook/addon-actions": "^4.1.11", |
| 49 | + "@storybook/addon-backgrounds": "^4.1.11", |
| 50 | + "@storybook/addon-console": "^1.1.0", |
| 51 | + "@storybook/addon-knobs": "^4.1.11", |
| 52 | + "@storybook/addon-options": "^4.1.11", |
| 53 | + "@storybook/addon-storysource": "^4.1.11", |
| 54 | + "@storybook/addon-viewport": "^4.1.11", |
| 55 | + "@storybook/react": "^4.1.11", |
| 56 | + "babel-eslint": "^10.0.1", |
| 57 | + "babel-loader": "^8.0.5", |
| 58 | + "eslint": "^5.13.0", |
| 59 | + "eslint-config-ns": "^0.2.0", |
| 60 | + "eslint-plugin-import": "^2.16.0", |
| 61 | + "eslint-plugin-jest": "^22.2.2", |
| 62 | + "eslint-plugin-jsx-a11y": "^6.2.0", |
| 63 | + "eslint-plugin-prettier": "^3.0.1", |
| 64 | + "eslint-plugin-react": "^7.12.4", |
| 65 | + "husky": "^1.3.1", |
| 66 | + "lerna": "^3.10.7", |
| 67 | + "lint-staged": "^8.1.3", |
| 68 | + "prettier": "^1.16.3", |
| 69 | + "storybook-addon-jsx": "^6.0.0", |
| 70 | + "storybook-readme": "^4.0.5" |
| 71 | + }, |
| 72 | + "dependencies": { |
| 73 | + "react": "^16.7.0", |
| 74 | + "react-dom": "^16.7.0" |
| 75 | + } |
| 76 | +} |
0 commit comments