{ "name": "sonar-docs", "version": "0.0.0", "license": "LGPL-3.0", "private": true, "dependencies": { "@andrew-codes/gatsby-plugin-elasticlunr-search": "1.0.4", "classnames": "2.2.6", "gatsby": "2.2.8", "gatsby-plugin-layout": "1.0.13", "gatsby-plugin-react-helmet": "3.0.10", "gatsby-plugin-typescript": "2.0.11", "gatsby-plugin-typography": "2.2.10", "gatsby-remark-custom-blocks": "2.0.7", "gatsby-source-filesystem": "2.0.28", "gatsby-transformer-remark": "2.3.8", "lodash": "4.17.11", "lunr": "2.3.6", "react": "16.8.5", "react-dom": "16.8.5", "react-helmet": "5.2.0", "react-typography": "0.16.19", "typography": "0.16.19" }, "devDependencies": { "@types/classnames": "2.2.7", "@types/enzyme": "3.9.1", "@types/jest": "24.0.11", "@types/lodash": "4.14.123", "@types/lunr": "2.3.2", "@types/react": "16.8.8", "@types/react-dom": "16.8.3", "@types/react-helmet": "5.0.8", "@typescript-eslint/parser": "1.5.0", "babel-jest": "24.5.0", "enzyme": "3.9.0", "enzyme-adapter-react-16": "1.11.2", "enzyme-to-json": "3.3.5", "eslint": "5.15.3", "eslint-config-sonarqube": "0.3.0", "eslint-plugin-import": "2.16.0", "eslint-plugin-jsx-a11y": "6.2.1", "eslint-plugin-promise": "4.0.1", "eslint-plugin-react": "7.12.4", "eslint-plugin-sonarjs": "0.3.0", "fs-extra": "7.0.1", "glob-promise": "3.4.0", "graphql-code-generator": "0.5.2", "jest": "24.5.0", "prettier": "1.16.4", "react-test-renderer": "16.8.5", "remark": "10.0.1", "ts-jest": "24.0.0", "typescript": "3.3.3333", "unist-util-visit": "1.4.0" }, "scripts": { "build": "gatsby clean && gatsby build --prefix-paths", "develop": "gatsby develop", "graphql-types": "gql-gen --url http://localhost:8000/___graphql --template typescript --out ./src/@types/graphql-types.d.ts", "test": "jest", "format": "prettier --write --list-different 'src/**/*.{js,ts,tsx,css}'", "format-check": "prettier --list-different 'src/**/*.{js,ts,tsx,css}'", "lint": "eslint --ext js,ts,tsx --quiet src", "ts-check": "tsc --noEmit", "validate": "yarn lint && yarn ts-check && yarn format-check && yarn test", "validate-ci": "yarn lint && yarn ts-check && yarn format-check && yarn test" }, "prettier": { "jsxBracketSameLine": true, "printWidth": 100, "singleQuote": true }, "jest": { "globals": { "ts-jest": { "diagnostics": { "ignoreCodes": [ 151001 ] } } }, "moduleFileExtensions": [ "ts", "tsx", "js", "json" ], "moduleNameMapper": { "^.+\\.(hbs|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/config/jest/FileStub.js", "^.+\\.css$": "/config/jest/CSSStub.js" }, "setupFiles": [ "/config/jest/SetupEnzyme.js" ], "snapshotSerializers": [ "enzyme-to-json/serializer" ], "testPathIgnorePatterns": [ "/node_modules", "/config", "/.cache" ], "testRegex": "(/__tests__/.*|\\-test)\\.(ts|tsx|js)$", "transform": { "\\.js$": "babel-jest", "\\.(ts|tsx)$": "ts-jest" } } }