redoc/package.json

201 lines
6.3 KiB
JSON
Raw Normal View History

2015-10-03 11:54:09 +03:00
{
2016-01-13 00:35:08 +03:00
"name": "redoc",
2020-08-20 16:52:46 +03:00
"version": "2.0.0-rc.38",
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
},
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",
2018-05-16 12:44:36 +03:00
"types": "typings/index.d.ts",
2015-10-03 11:54:09 +03:00
"scripts": {
"start": "webpack-dev-server --mode=development --env.playground --hot --config demo/webpack.config.ts",
2018-03-17 18:58:28 +03:00
"start:prod": "webpack-dev-server --env.playground --mode=production --config demo/webpack.config.ts",
"start:benchmark": "webpack-dev-server --mode=production --env.bench --config demo/webpack.config.ts",
"test": "npm run lint && npm run unit && npm run license-check",
"unit": "jest --coverage",
"e2e": "cypress run",
2018-03-17 22:09:18 +03:00
"e2e-ci": "cypress run --record",
"bundlesize": "bundlesize",
"cy:open": "cypress open",
"bundle:clean": "rimraf bundles",
2018-03-17 18:58:28 +03:00
"bundle:standalone": "webpack --env.standalone --mode=production",
2019-05-10 18:03:28 +03:00
"bundle:lib": "webpack --mode=production && npm run declarations",
2017-11-19 22:27:44 +03:00
"bundle": "npm run bundle:clean && npm run bundle:lib && npm run bundle:standalone",
2018-05-18 15:10:16 +03:00
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json && cp -R src/types typings/",
2018-03-17 19:50:55 +03:00
"stats": "webpack --env.standalone --json --profile --mode=production > stats.json",
"prettier": "prettier --write \"cli/index.ts\" \"src/**/*.{ts,tsx}\"",
2018-01-22 21:30:53 +03:00
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
2020-03-17 14:18:23 +03:00
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
2018-03-13 13:58:22 +03:00
"benchmark": "node ./benchmark/benchmark.js",
2018-03-22 19:22:11 +03:00
"start:demo": "webpack-dev-server --hot --config demo/webpack.config.ts --mode=development",
"compile:cli": "tsc custom.d.ts cli/index.ts --target es6 --module commonjs --types yargs",
2018-03-21 20:28:51 +03:00
"build:demo": "webpack --mode=production --config demo/webpack.config.ts",
2018-05-14 11:00:07 +03:00
"deploy:demo": "npm run build:demo && deploy-to-gh-pages --update demo/dist",
"license-check": "license-checker --production --onlyAllow 'MIT;ISC;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause' --summary",
"docker:build": "docker build -f config/docker/Dockerfile -t redoc ."
2015-10-03 11:54:09 +03:00
},
"devDependencies": {
2020-07-25 19:06:22 +03:00
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-decorators": "^7.10.4",
2020-03-16 17:38:18 +03:00
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
2020-07-25 19:06:22 +03:00
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-syntax-typescript": "^7.10.4",
"@cypress/webpack-preprocessor": "^5.4.2",
2020-03-16 17:38:18 +03:00
"@hot-loader/react-dom": "^16.12.0",
2020-07-25 19:06:22 +03:00
"@types/chai": "^4.2.12",
"@types/dompurify": "^2.0.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",
2020-07-25 19:06:22 +03:00
"@types/jest": "^26.0.7",
2017-10-12 00:01:37 +03:00
"@types/json-pointer": "^1.0.30",
2020-07-25 19:06:22 +03:00
"@types/lodash": "^4.14.158",
"@types/lunr": "^2.3.3",
2019-12-12 13:46:17 +03:00
"@types/mark.js": "^8.11.5",
2020-07-25 19:06:22 +03:00
"@types/marked": "^1.1.0",
"@types/prismjs": "^1.16.1",
2019-09-30 10:34:49 +03:00
"@types/prop-types": "^15.7.3",
2020-07-25 19:06:22 +03:00
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-tabs": "^2.3.2",
"@types/styled-components": "^5.1.1",
"@types/tapable": "^1.0.6",
"@types/webpack": "^4.41.21",
"@types/webpack-env": "^1.15.2",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-loader": "^8.1.0",
2020-03-16 17:38:18 +03:00
"babel-plugin-styled-components": "^1.10.7",
2018-01-29 14:09:38 +03:00
"beautify-benchmark": "^0.2.4",
2019-07-29 18:41:57 +03:00
"bundlesize": "^0.18.0",
2020-07-25 19:06:22 +03:00
"conventional-changelog-cli": "^2.0.34",
"copy-webpack-plugin": "^6.0.3",
"core-js": "^3.6.5",
"coveralls": "^3.1.0",
"css-loader": "^3.6.0",
"cypress": "^4.11.0",
2019-07-29 18:41:57 +03:00
"deploy-to-gh-pages": "^1.3.7",
2020-03-16 17:38:18 +03:00
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
2020-07-25 19:06:22 +03:00
"enzyme-to-json": "^3.5.0",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.3",
"fork-ts-checker-webpack-plugin": "^5.0.11",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
2019-03-11 18:08:29 +03:00
"license-checker": "^25.0.1",
2020-07-25 19:06:22 +03:00
"lodash": "^4.17.19",
"mobx": "^5.15.4",
"prettier": "^2.0.5",
2018-11-27 10:40:00 +03:00
"raf": "^3.4.1",
2020-07-25 19:06:22 +03:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
2020-03-16 17:38:18 +03:00
"rimraf": "^3.0.2",
2020-07-25 19:06:22 +03:00
"shelljs": "^0.8.4",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"styled-components": "^5.1.1",
"ts-jest": "^26.1.3",
"ts-loader": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"unfetch": "^4.1.0",
2020-07-25 19:06:22 +03:00
"url-polyfill": "^1.1.10",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.0",
"workerize-loader": "^1.3.0",
2018-01-23 20:09:23 +03:00
"yaml-js": "^0.2.3"
2017-05-08 11:24:25 +03:00
},
"peerDependencies": {
2019-08-01 10:34:53 +03:00
"core-js": "^3.1.4",
"mobx": "^4.2.0 || ^5.0.0",
2019-03-15 12:37:54 +03:00
"react": "^16.8.4",
"react-dom": "^16.8.4",
2019-07-29 18:41:57 +03:00
"styled-components": "^4.1.1"
2017-03-15 18:50:10 +03:00
},
"dependencies": {
"@types/node": "^13.11.1",
2018-06-25 09:55:35 +03:00
"classnames": "^2.2.6",
2017-10-12 00:01:37 +03:00
"decko": "^1.2.0",
2020-07-25 19:06:22 +03:00
"dompurify": "^2.0.12",
"eventemitter3": "^4.0.4",
2017-05-08 11:24:25 +03:00
"json-pointer": "^0.6.0",
2019-03-11 18:08:29 +03:00
"json-schema-ref-parser": "^6.1.0",
2019-12-12 13:46:17 +03:00
"lunr": "2.3.8",
"mark.js": "^8.11.1",
2019-07-29 18:41:57 +03:00
"marked": "^0.7.0",
2019-12-12 13:46:17 +03:00
"memoize-one": "~5.1.1",
2020-07-25 19:06:22 +03:00
"mobx-react": "^6.2.2",
"openapi-sampler": "^1.0.0-beta.16",
2018-06-25 09:55:35 +03:00
"perfect-scrollbar": "^1.4.0",
2020-07-25 19:06:22 +03:00
"polished": "^3.6.5",
"prismjs": "^1.20.0",
2019-03-11 18:08:29 +03:00
"prop-types": "^15.7.2",
"react-dropdown-aria": "^2.0.7",
2020-07-25 19:06:22 +03:00
"react-tabs": "^3.1.1",
"slugify": "^1.4.4",
2017-11-20 03:18:43 +03:00
"stickyfill": "^1.1.1",
2020-07-25 19:06:22 +03:00
"swagger2openapi": "^6.2.1",
"tslib": "^2.0.0",
"url-template": "^2.0.8"
2017-10-12 00:01:37 +03:00
},
"bundlesize": [
{
"path": "./bundles/redoc.standalone.js",
"maxSize": "300 kB"
}
],
2017-10-12 00:01:37 +03:00
"jest": {
"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/"
],
"modulePathIgnorePatterns": [
"/benchmark/"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/empty.js"
}
2017-10-12 00:01:37 +03:00
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"parser": "typescript"
}
}