|
| 1 | +{ |
| 2 | + "private": true, |
| 3 | + "publishConfig": { |
| 4 | + "access": "public" |
| 5 | + }, |
| 6 | + "scripts": { |
| 7 | + "build": "node ./scripts/build.js", |
| 8 | + "contributors:add": "all-contributors add", |
| 9 | + "contributors:generate": "all-contributors generate", |
| 10 | + "lint": "lerna run lint", |
| 11 | + "test": "jest --coverage", |
| 12 | + "test:ci": "jest --ci --coverage --runInBand", |
| 13 | + "test:watch": "jest --watch", |
| 14 | + "storybook:build": "npx lerna run storybook:build", |
| 15 | + "storybook:run": "npx lerna run storybook:run", |
| 16 | + "typecheck": "npx lerna run typecheck" |
| 17 | + }, |
| 18 | + "lint-staged": { |
| 19 | + "src/**/*.json": [ |
| 20 | + "prettier --write", |
| 21 | + "git add" |
| 22 | + ], |
| 23 | + "stories/**/*.{js,jsx,ts,tsx}": [ |
| 24 | + "prettier --write", |
| 25 | + "git add" |
| 26 | + ] |
| 27 | + }, |
| 28 | + "husky": { |
| 29 | + "hooks": { |
| 30 | + "pre-commit": "lint-staged" |
| 31 | + } |
| 32 | + }, |
| 33 | + "devDependencies": { |
| 34 | + "@babel/core": "^7.2.0", |
| 35 | + "@types/jest": "^23.3.10", |
| 36 | + "@types/react": "^16.7.13", |
| 37 | + "@types/react-dom": "^16.0.11", |
| 38 | + "@types/react-test-renderer": "^16.0.3", |
| 39 | + "all-contributors-cli": "^5.4.1", |
| 40 | + "babel-core": "^7.0.0-bridge.0", |
| 41 | + "husky": "^1.1.4", |
| 42 | + "jest": "^23.6.0", |
| 43 | + "lerna": "^3.13.1", |
| 44 | + "lint-staged": "^7.2.0", |
| 45 | + "prettier": "^1.15.3", |
| 46 | + "react": "^16.8.3", |
| 47 | + "react-test-renderer": "^16.8.3", |
| 48 | + "rimraf": "^2.6.2", |
| 49 | + "rollup": "^0.67.3", |
| 50 | + "rollup-plugin-babel": "^4.0.3", |
| 51 | + "rollup-plugin-commonjs": "^9.1.6", |
| 52 | + "rollup-plugin-node-globals": "^1.4.0", |
| 53 | + "rollup-plugin-node-resolve": "^3.4.0", |
| 54 | + "rollup-plugin-replace": "^2.1.0", |
| 55 | + "rollup-plugin-sourcemaps": "^0.4.2", |
| 56 | + "rollup-plugin-terser": "^3.0.0", |
| 57 | + "shelljs": "^0.8.3", |
| 58 | + "ts-jest": "^23.10.5", |
| 59 | + "tslint": "^5.11.0", |
| 60 | + "tslint-config-prettier": "^1.16.0", |
| 61 | + "tslint-react": "^3.6.0", |
| 62 | + "typescript": "^3.2.2" |
| 63 | + }, |
| 64 | + "resolutions": { |
| 65 | + "babel-core": "^7.0.0-bridge.0" |
| 66 | + }, |
| 67 | + "workspaces": { |
| 68 | + "packages": [ |
| 69 | + "packages/*" |
| 70 | + ] |
| 71 | + } |
| 72 | +} |
0 commit comments