* Build(deps-dev): bump typescript from 3.7.5 to 3.8.3 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.7.5 to 3.8.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v3.7.5...v3.8.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Add generics to useState where necessary Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: PyvesB <PyvesDev@gmail.com>
283 lines
9.9 KiB
JSON
283 lines
9.9 KiB
JSON
{
|
|
"name": "shields.io",
|
|
"version": "0.0.0",
|
|
"description": "Shields.io server and frontend",
|
|
"private": true,
|
|
"keywords": [
|
|
"GitHub",
|
|
"badge",
|
|
"SVG",
|
|
"image",
|
|
"shields.io"
|
|
],
|
|
"homepage": "http://shields.io",
|
|
"bugs": {
|
|
"url": "https://github.com/badges/shields/issues",
|
|
"email": "thaddee.tyl@gmail.com"
|
|
},
|
|
"license": "CC0-1.0",
|
|
"author": "Thaddée Tyl <thaddee.tyl@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/badges/shields"
|
|
},
|
|
"dependencies": {
|
|
"@hapi/joi": "^16.1.8",
|
|
"@sentry/node": "^5.13.2",
|
|
"bytes": "^3.1.0",
|
|
"camelcase": "^5.3.1",
|
|
"camp": "~17.2.4",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chalk": "^3.0.0",
|
|
"check-node-version": "^4.0.2",
|
|
"chrome-web-store-item-property": "~1.2.0",
|
|
"config": "^3.3.0",
|
|
"cross-env": "^6.0.3",
|
|
"decamelize": "^3.2.0",
|
|
"dotenv": "^8.2.0",
|
|
"emojic": "^1.1.15",
|
|
"escape-string-regexp": "^2.0.0",
|
|
"fast-xml-parser": "^3.16.0",
|
|
"fsos": "^1.1.6",
|
|
"gh-badges": "file:gh-badges",
|
|
"glob": "^7.1.6",
|
|
"graphql": "^14.6.0",
|
|
"graphql-tag": "^2.10.3",
|
|
"ioredis": "4.16.0",
|
|
"joi-extension-semver": "4.0.0",
|
|
"js-yaml": "^3.13.1",
|
|
"jsonpath": "~1.0.2",
|
|
"lodash.countby": "^4.6.0",
|
|
"lodash.times": "^4.3.2",
|
|
"moment": "^2.24.0",
|
|
"node-env-flag": "^0.1.0",
|
|
"parse-link-header": "^1.0.1",
|
|
"path-to-regexp": "^5.0.0",
|
|
"pretty-bytes": "^5.3.0",
|
|
"priorityqueuejs": "^1.0.0",
|
|
"prom-client": "^11.5.3",
|
|
"query-string": "^6.11.1",
|
|
"request": "~2.88.2",
|
|
"semver": "~7.1.3",
|
|
"simple-icons": "2.6.0",
|
|
"xmldom": "~0.2.1",
|
|
"xpath": "~0.0.27"
|
|
},
|
|
"scripts": {
|
|
"coverage:test:core": "nyc npm run test:core",
|
|
"coverage:test:frontend": "nyc --nycrc-path .nycrc-frontend.json npm run test:frontend",
|
|
"coverage:test:package": "nyc npm run test:package",
|
|
"coverage:test:entrypoint": "nyc npm run test:entrypoint",
|
|
"coverage:test:integration": "nyc npm run test:integration",
|
|
"coverage:test:services": "nyc npm run test:services",
|
|
"coverage:clean": "rimraf .nyc_output coverage",
|
|
"precoverage:test": "run-s --silent coverage:clean defs features",
|
|
"coverage:test": "run-s --silent --continue-on-error coverage:test:core coverage:test:package coverage:test:entrypoint coverage:test:frontend coverage:test:integration",
|
|
"coverage:report:generate": "nyc report",
|
|
"coverage:report:open": "open-cli coverage/lcov-report/index.html",
|
|
"coverage:report": "run-s --silent coverage:report:generate coverage:report:open",
|
|
"lint": "eslint \"**/*.@(js|ts|tsx)\"",
|
|
"prettier": "prettier --write \"**/*.@(js|ts|tsx|md|json|yml)\"",
|
|
"prettier:check": "prettier --check \"**/*.@(js|ts|tsx|md|json|yml)\"",
|
|
"danger": "danger",
|
|
"test:frontend": "cross-env NODE_ENV=test ts-mocha --config .mocharc-frontend.yml \"frontend/**/*.spec.@(js|ts|tsx)\"",
|
|
"test:e2e": "cypress run",
|
|
"test:core": "cross-env NODE_CONFIG_ENV=test mocha \"core/**/*.spec.js\" \"lib/**/*.spec.js\" \"services/**/*.spec.js\"",
|
|
"test:package": "mocha \"gh-badges/**/*.spec.js\"",
|
|
"test:entrypoint": "cross-env NODE_CONFIG_ENV=test mocha entrypoint.spec.js",
|
|
"test:integration": "cross-env NODE_CONFIG_ENV=test mocha \"core/**/*.integration.js\" \"services/**/*.integration.js\"",
|
|
"test:services": "cross-env NODE_CONFIG_ENV=test mocha --delay core/service-test-runner/cli.js",
|
|
"test:services:trace": "cross-env NODE_CONFIG_ENV=test TRACE_SERVICES=true npm run test:services -- $*",
|
|
"test:services:pr:prepare": "node core/service-test-runner/pull-request-services-cli.js > pull-request-services.log",
|
|
"test:services:pr:run": "cross-env NODE_CONFIG_ENV=test mocha --delay core/service-test-runner/cli.js --stdin < pull-request-services.log",
|
|
"test:services:pr": "run-s --silent test:services:pr:prepare test:services:pr:run",
|
|
"pretest": "run-s --silent defs features",
|
|
"test": "run-s --silent --continue-on-error lint test:frontend test:package test:core test:entrypoint prettier:check",
|
|
"check-types:frontend": "tsc --noEmit --project .",
|
|
"depcheck": "check-node-version --node \">= 8.0\"",
|
|
"postinstall": "run-s --silent depcheck",
|
|
"prebuild": "run-s --silent depcheck",
|
|
"features": "node scripts/export-supported-features-cli.js > supported-features.json",
|
|
"defs": "node scripts/export-service-definitions-cli.js > service-definitions.yml",
|
|
"build": "run-s defs features && gatsby build",
|
|
"heroku-postbuild": "run-s --silent build",
|
|
"start:server:prod": "node server",
|
|
"now-start": "npm run start:server:prod",
|
|
"start:server:e2e-on-build": "node server 8080",
|
|
"start:server": "cross-env NODE_CONFIG_ENV=development nodemon server 8080",
|
|
"debug:server": "cross-env NODE_CONFIG_ENV=development nodemon --inspect server.js 8080",
|
|
"prestart": "run-s --silent depcheck defs features",
|
|
"start": "concurrently --names server,frontend \"npm run start:server\" \"cross-env GATSBY_BASE_URL=http://localhost:8080 gatsby develop --port 3000\"",
|
|
"e2e": "start-server-and-test start http://localhost:3000 test:e2e",
|
|
"e2e-on-build": "cross-env CYPRESS_baseUrl=http://localhost:8080 start-server-and-test start:server:e2e-on-build http://localhost:8080 test:e2e",
|
|
"badge": "cross-env NODE_CONFIG_ENV=test TRACE_SERVICES=true node scripts/badge-cli.js",
|
|
"build-docs": "rimraf api-docs/ && jsdoc --pedantic -c ./jsdoc.json ."
|
|
},
|
|
"lint-staged": {
|
|
"**/*.js": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"**/*.@(md|json|yml)": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"nodemonConfig": {
|
|
"verbose": true,
|
|
"ext": "js",
|
|
"ignore": [
|
|
"package.json",
|
|
"**/*.spec.js",
|
|
"**/*.tester.js",
|
|
"**/*.integration.js",
|
|
"frontend/",
|
|
"public/",
|
|
"build/",
|
|
"cypress/"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.7",
|
|
"@babel/polyfill": "^7.8.7",
|
|
"@babel/register": "7.8.6",
|
|
"@mapbox/react-click-to-select": "^2.2.0",
|
|
"@types/chai": "^4.2.10",
|
|
"@types/chai-enzyme": "^0.6.7",
|
|
"@types/enzyme": "^3.10.5",
|
|
"@types/lodash.debounce": "^4.0.6",
|
|
"@types/lodash.groupby": "^4.6.6",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^13.7.7",
|
|
"@types/react-helmet": "^5.0.15",
|
|
"@types/react-modal": "^3.10.5",
|
|
"@types/react-select": "^3.0.10",
|
|
"@types/styled-components": "4.1.8",
|
|
"@typescript-eslint/eslint-plugin": "^2.22.0",
|
|
"@typescript-eslint/parser": "^2.22.0",
|
|
"babel-plugin-inline-react-svg": "^1.1.1",
|
|
"babel-plugin-istanbul": "^6.0.0",
|
|
"babel-preset-gatsby": "^0.2.29",
|
|
"caller": "^1.0.1",
|
|
"chai": "^4.1.2",
|
|
"chai-datetime": "^1.5.0",
|
|
"chai-enzyme": "^1.0.0-beta.1",
|
|
"chai-string": "^1.4.0",
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"child-process-promise": "^2.2.1",
|
|
"clipboard-copy": "^3.1.0",
|
|
"concurrently": "^5.1.0",
|
|
"cypress": "^4.1.0",
|
|
"danger": "^9.2.10",
|
|
"danger-plugin-no-test-shortcuts": "^2.0.0",
|
|
"enzyme": "^3.11.0",
|
|
"enzyme-adapter-react-16": "^1.15.2",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.9.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-config-standard-react": "^9.2.0",
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
"eslint-plugin-cypress": "^2.10.3",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-jsdoc": "^20.4.0",
|
|
"eslint-plugin-mocha": "^6.3.0",
|
|
"eslint-plugin-no-extension-in-require": "^0.2.0",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-react": "^7.18.3",
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
|
"eslint-plugin-sort-class-members": "^1.6.0",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"fetch-ponyfill": "^6.1.0",
|
|
"fs-readfile-promise": "^3.0.1",
|
|
"gatsby": "2.19.32",
|
|
"gatsby-plugin-catch-links": "^2.1.26",
|
|
"gatsby-plugin-page-creator": "^2.1.40",
|
|
"gatsby-plugin-react-helmet": "^3.1.22",
|
|
"gatsby-plugin-remove-trailing-slashes": "^2.1.21",
|
|
"gatsby-plugin-styled-components": "^3.1.19",
|
|
"gatsby-plugin-typescript": "^2.2.0",
|
|
"got": "^9.6.0",
|
|
"humanize-string": "^2.1.0",
|
|
"husky": "^3.1.0",
|
|
"icedfrisby": "3.0.0",
|
|
"icedfrisby-nock": "^2.0.0",
|
|
"is-png": "^2.0.0",
|
|
"is-svg": "^4.2.1",
|
|
"js-yaml-loader": "^1.2.2",
|
|
"jsdoc": "^3.6.3",
|
|
"lint-staged": "^9.5.0",
|
|
"lodash.debounce": "^4.0.8",
|
|
"lodash.difference": "^4.5.0",
|
|
"lodash.groupby": "^4.6.0",
|
|
"minimist": "^1.2.0",
|
|
"mocha": "^6.2.2",
|
|
"mocha-env-reporter": "^4.0.0",
|
|
"mocha-junit-reporter": "^1.23.3",
|
|
"mocha-yaml-loader": "^1.0.3",
|
|
"nock": "11.9.1",
|
|
"node-mocks-http": "^1.8.1",
|
|
"nodemon": "^2.0.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.0.0",
|
|
"opn-cli": "^5.0.0",
|
|
"portfinder": "^1.0.25",
|
|
"prettier": "1.19.1",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.0",
|
|
"react-error-overlay": "^3.0.0",
|
|
"react-helmet": "^5.2.1",
|
|
"react-modal": "^3.11.2",
|
|
"react-pose": "^4.0.10",
|
|
"react-select": "^3.0.8",
|
|
"read-all-stdin-sync": "^1.0.5",
|
|
"redis-server": "^1.2.2",
|
|
"require-hacker": "^3.0.1",
|
|
"rimraf": "^3.0.2",
|
|
"sazerac": "^1.1.0",
|
|
"sinon": "^8.1.1",
|
|
"sinon-chai": "^3.5.0",
|
|
"snap-shot-it": "^7.9.2",
|
|
"start-server-and-test": "1.10.7",
|
|
"styled-components": "^5.0.1",
|
|
"tmp": "0.1.0",
|
|
"ts-mocha": "^6.0.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"engines": {
|
|
"node": "^10.16.3",
|
|
"npm": "^6.11.3"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
[
|
|
"inline-react-svg",
|
|
{
|
|
"svgo": false
|
|
}
|
|
]
|
|
],
|
|
"presets": [
|
|
"babel-preset-gatsby"
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"plugins": [
|
|
"istanbul"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/shields",
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
}
|
|
}
|