|
| 1 | +{ |
| 2 | + "name": "@data-driven-forms/react-starter", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Starter kit for data-driven-forms libraries.", |
| 5 | + "main": "dist/index.js", |
| 6 | + "scripts": { |
| 7 | + "start": "webpack-dev-server --env dev --config ./config/webpack.config.js --open --hot", |
| 8 | + "build": "webpack --env prod --config ./config/webpack.config.js", |
| 9 | + "test": "jest --coverage" |
| 10 | + }, |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/data-driven-forms/react-starter.git" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "react", |
| 17 | + "forms", |
| 18 | + "javascript", |
| 19 | + "starter app" |
| 20 | + ], |
| 21 | + "author": "Martin Marosi", |
| 22 | + "license": "MIT", |
| 23 | + "bugs": { |
| 24 | + "url": "https://github.com/data-driven-forms/react-starter/issues" |
| 25 | + }, |
| 26 | + "homepage": "https://github.com/data-driven-forms/react-starter#readme", |
| 27 | + "jest": { |
| 28 | + "setupFiles": [ |
| 29 | + "./config/jest.setup.js" |
| 30 | + ], |
| 31 | + "coverageDirectory": "./coverage/", |
| 32 | + "collectCoverage": true, |
| 33 | + "collectCoverageFrom": [ |
| 34 | + "src/**/*.{js,jsx}", |
| 35 | + "!**/node_modules/**", |
| 36 | + "!**/.{snap}*", |
| 37 | + "!src/vendor.js" |
| 38 | + ], |
| 39 | + "coverageReporters": [ |
| 40 | + "text", |
| 41 | + "html", |
| 42 | + "lcov" |
| 43 | + ], |
| 44 | + "moduleNameMapper": { |
| 45 | + "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js", |
| 46 | + "\\.(css|scss)$": "identity-obj-proxy" |
| 47 | + } |
| 48 | + }, |
| 49 | + "devDependencies": { |
| 50 | + "@babel/core": "^7.1.6", |
| 51 | + "@babel/plugin-syntax-dynamic-import": "^7.0.0", |
| 52 | + "@babel/preset-env": "^7.1.6", |
| 53 | + "@babel/preset-react": "^7.0.0", |
| 54 | + "@semantic-release/git": "^7.0.5", |
| 55 | + "@semantic-release/npm": "^5.1.1", |
| 56 | + "babel-core": "^7.0.0-bridge.0", |
| 57 | + "babel-eslint": "9.x", |
| 58 | + "babel-jest": "^23.6.0", |
| 59 | + "babel-loader": "^8.0.4", |
| 60 | + "babel-plugin-lodash": "^3.3.4", |
| 61 | + "css-loader": "^1.0.1", |
| 62 | + "enzyme": "^3.7.0", |
| 63 | + "enzyme-adapter-react-16": "^1.7.0", |
| 64 | + "enzyme-to-json": "^3.3.4", |
| 65 | + "eslint": "5.x", |
| 66 | + "eslint-config-prettier": "^3.3.0", |
| 67 | + "eslint-config-react-app": "^3.0.5", |
| 68 | + "eslint-loader": "^2.1.1", |
| 69 | + "eslint-plugin-flowtype": "2.x", |
| 70 | + "eslint-plugin-import": "2.x", |
| 71 | + "eslint-plugin-jsx-a11y": "6.x", |
| 72 | + "eslint-plugin-react": "^7.11.1", |
| 73 | + "html-webpack-plugin": "^3.2.0", |
| 74 | + "identity-obj-proxy": "^3.0.0", |
| 75 | + "jest": "^23.6.0", |
| 76 | + "mini-css-extract-plugin": "^0.4.4", |
| 77 | + "node-sass": "^4.10.0", |
| 78 | + "prop-types": "^15.6.2", |
| 79 | + "react": "^16.6.3", |
| 80 | + "react-dom": "^16.6.3", |
| 81 | + "regenerator-runtime": "^0.12.1", |
| 82 | + "resolve-url-loader": "^3.0.0", |
| 83 | + "sass-loader": "^7.1.0", |
| 84 | + "semantic-release": "15.12.0", |
| 85 | + "style-loader": "^0.23.1", |
| 86 | + "url-loader": "^1.1.2", |
| 87 | + "webpack": "^4.25.1", |
| 88 | + "webpack-cli": "^3.1.2", |
| 89 | + "webpack-dev-server": "^3.1.10", |
| 90 | + "webpack-merge": "^4.1.4" |
| 91 | + }, |
| 92 | + "release": { |
| 93 | + "prepare": [ |
| 94 | + "@semantic-release/npm", |
| 95 | + { |
| 96 | + "path": "@semantic-release/git", |
| 97 | + "assets": [ |
| 98 | + "package.json" |
| 99 | + ], |
| 100 | + "message": "Release of new version: ${nextRelease.version} <no> [skip ci]" |
| 101 | + } |
| 102 | + ] |
| 103 | + } |
| 104 | +} |
0 commit comments