redoc/package.json

215 lines
6.8 KiB
JSON
Raw Permalink Normal View History

2015-10-03 11:54:09 +03:00
{
2016-01-13 00:35:08 +03:00
"name": "redoc",
2024-06-10 16:21:57 +03:00
"version": "2.1.5",
2017-10-12 00:01:37 +03:00
"description": "ReDoc",
2016-01-06 18:22:17 +03:00
"repository": {
"type": "git",
2019-06-04 15:47:22 +03:00
"url": "git://github.com/Redocly/redoc"
2016-01-06 18:22:17 +03:00
},
"browserslist": [
"defaults"
],
2016-09-28 09:33:56 +03:00
"engines": {
2017-01-28 15:14:08 +03:00
"node": ">=6.9",
2016-09-28 09:33:56 +03:00
"npm": ">=3.0.0"
},
2018-03-21 18:32:28 +03:00
"author": "Roman Hotsiy <gotsijroman@gmail.com>",
"license": "MIT",
2015-10-03 11:54:09 +03:00
"keywords": [
2016-02-24 19:25:49 +03:00
"OpenAPI",
"OpenAPI Specification",
2015-10-03 11:54:09 +03:00
"Swagger",
"JSON-Schema",
"API",
2016-02-24 19:25:49 +03:00
"REST",
2015-10-03 11:54:09 +03:00
"documentation",
2018-03-21 18:32:28 +03:00
"React.js"
2015-10-03 11:54:09 +03:00
],
2017-11-19 22:27:44 +03:00
"main": "bundles/redoc.lib.js",
"browser": "bundles/redoc.browser.lib.js",
2018-05-16 12:44:36 +03:00
"types": "typings/index.d.ts",
2015-10-03 11:54:09 +03:00
"scripts": {
"start": "webpack serve --mode=development --env playground --hot --config demo/webpack.config.ts",
"start:prod": "webpack serve --env playground --mode=production --config demo/webpack.config.ts",
"start:benchmark": "webpack serve --mode=production --env.bench --config demo/webpack.config.ts",
2022-04-18 23:46:08 +03:00
"test": "npm run unit && npm run license-check",
"unit": "jest --coverage",
"test:update-snapshot": "jest --updateSnapshot",
"e2e": "cypress run",
2018-03-17 22:09:18 +03:00
"e2e-ci": "cypress run --record",
"bundlesize": "size-limit",
2021-06-02 15:53:36 +03:00
"ts-check": "tsc --noEmit --skipLibCheck",
"cy:open": "cypress open",
"bundle:clean": "rimraf bundles",
"bundle:standalone": "webpack --env production --env standalone --mode=production",
2019-05-10 18:03:28 +03:00
"bundle:lib": "webpack --mode=production && npm run declarations",
"bundle:browser": "webpack --env production --env browser --mode=production",
2023-05-18 17:53:26 +03:00
"bundle": "npm run bundle:clean && npm run bundle:lib && npm run bundle:browser && npm run bundle:standalone",
2018-05-18 15:10:16 +03:00
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json && cp -R src/types typings/",
"stats": "webpack --env production --env standalone --json --profile --mode=production > stats.json",
2023-05-18 17:53:26 +03:00
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
2018-01-22 21:30:53 +03:00
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
2022-04-18 23:46:08 +03:00
"lint": "eslint --fix 'src/**/*.{js,ts,tsx}' --cache",
2018-03-13 13:58:22 +03:00
"benchmark": "node ./benchmark/benchmark.js",
"start:demo": "webpack serve --hot --config demo/webpack.config.ts --mode=development",
2018-03-21 20:28:51 +03:00
"build:demo": "webpack --mode=production --config demo/webpack.config.ts",
2022-05-30 13:40:19 +03:00
"publish-cdn": "scripts/publish-cdn.sh",
2020-09-07 12:54:36 +03:00
"deploy:demo": "aws s3 sync demo/dist s3://production-redoc-demo --acl=public-read",
"license-check": "license-checker --production --onlyAllow 'MIT;ISC;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;CC-BY-4.0;CC0-1.0;Python-2.0 ' --summary",
"docker:build": "docker build -f config/docker/Dockerfile -t redoc .",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged && npm run lint"
2015-10-03 11:54:09 +03:00
},
"devDependencies": {
2023-07-19 16:34:35 +03:00
"@cypress/webpack-preprocessor": "^5.17.1",
"@size-limit/file": "^11.1.4",
2021-06-02 15:53:36 +03:00
"@types/chai": "^4.2.18",
"@types/dompurify": "^2.2.2",
2020-03-16 17:38:18 +03:00
"@types/enzyme": "^3.10.5",
2019-03-11 18:08:29 +03:00
"@types/enzyme-to-json": "^1.5.3",
"@types/jest": "^29.5.6",
2017-10-12 00:01:37 +03:00
"@types/json-pointer": "^1.0.30",
2020-07-25 19:06:22 +03:00
"@types/lunr": "^2.3.3",
2019-12-12 13:46:17 +03:00
"@types/mark.js": "^8.11.5",
"@types/marked": "^4.0.3",
"@types/node": "^15.6.1",
2021-06-02 15:53:36 +03:00
"@types/prismjs": "^1.16.5",
2019-09-30 10:34:49 +03:00
"@types/prop-types": "^15.7.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
2020-07-25 19:06:22 +03:00
"@types/styled-components": "^5.1.1",
2021-06-02 15:53:36 +03:00
"@types/tapable": "^2.2.2",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.18.0",
2021-06-02 15:53:36 +03:00
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
2018-01-29 14:09:38 +03:00
"beautify-benchmark": "^0.2.4",
"conventional-changelog-cli": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
2021-06-02 15:53:36 +03:00
"core-js": "^3.13.1",
"css-loader": "^5.2.6",
"cypress": "^13.8.1",
2020-03-16 17:38:18 +03:00
"enzyme": "^3.11.0",
2021-06-02 15:53:36 +03:00
"enzyme-to-json": "^3.6.2",
"esbuild-loader": "^3.0.1",
2021-06-02 15:53:36 +03:00
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
2021-06-02 15:53:36 +03:00
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2021-06-02 15:53:36 +03:00
"js-yaml": "^4.1.0",
2019-03-11 18:08:29 +03:00
"license-checker": "^25.0.1",
"lodash.noop": "^3.0.1",
"mobx": "^6.10.2",
"outdent": "^0.8.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.0.0",
2018-11-27 10:40:00 +03:00
"raf": "^3.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
2020-03-16 17:38:18 +03:00
"rimraf": "^3.0.2",
2020-07-25 19:06:22 +03:00
"shelljs": "^0.8.4",
"size-limit": "^11.1.4",
"style-loader": "^3.3.1",
2023-07-19 16:34:35 +03:00
"styled-components": "^5.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.9.0",
2021-06-02 15:53:36 +03:00
"unfetch": "^4.2.0",
2023-07-19 16:34:35 +03:00
"url": "^0.11.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0",
"workerize-loader": "github:redocly/workerize-loader#webpack-5-dist"
2017-05-08 11:24:25 +03:00
},
"peerDependencies": {
2019-08-01 10:34:53 +03:00
"core-js": "^3.1.4",
2020-11-17 12:22:34 +03:00
"mobx": "^6.0.4",
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0",
"styled-components": "^4.1.1 || ^5.1.1 || ^6.0.5"
2017-03-15 18:50:10 +03:00
},
"dependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@redocly/openapi-core": "^1.4.0",
"classnames": "^2.3.2",
2017-10-12 00:01:37 +03:00
"decko": "^1.2.0",
"dompurify": "^3.0.6",
"eventemitter3": "^5.0.1",
"json-pointer": "^0.6.2",
2021-06-02 15:53:36 +03:00
"lunr": "^2.3.9",
"mark.js": "^8.11.1",
"marked": "^4.3.0",
"mobx-react": "^9.1.1",
2024-04-24 17:43:01 +03:00
"openapi-sampler": "^1.5.0",
"path-browserify": "^1.0.1",
2022-08-10 10:21:50 +03:00
"perfect-scrollbar": "^1.5.5",
"polished": "^4.2.2",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react-tabs": "^6.0.2",
"slugify": "~1.4.7",
2017-11-20 03:18:43 +03:00
"stickyfill": "^1.1.1",
"swagger2openapi": "^7.0.8",
"url-template": "^2.0.8"
2017-10-12 00:01:37 +03:00
},
"size-limit": [
{
"path": "./bundles/redoc.standalone.js",
"limit": "350 kB"
},
{
"path": "./bundles/redoc.lib.js",
"limit": "100 kB"
},
{
"path": "./bundles/redoc.browser.lib.js",
"limit": "100 kB"
}
],
2017-10-12 00:01:37 +03:00
"jest": {
2021-06-02 15:53:36 +03:00
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
],
2018-10-18 11:27:28 +03:00
"preset": "ts-jest",
2018-03-17 21:57:45 +03:00
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
2018-03-17 23:04:37 +03:00
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"coveragePathIgnorePatterns": [
2018-10-18 11:27:28 +03:00
"\\.d\\.ts$",
"/benchmark/",
"/node_modules/",
"src/services/__tests__/models/helpers.ts"
2018-10-18 11:27:28 +03:00
],
"modulePathIgnorePatterns": [
"/benchmark/",
"src/services/__tests__/models/helpers.ts"
2018-10-18 11:27:28 +03:00
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
2018-10-18 11:27:28 +03:00
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/empty.js"
}
2017-10-12 00:01:37 +03:00
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"arrowParens": "avoid"
}
}