forked from rapi-doc/RapiDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rapidoc",
"version": "9.0.1-beta",
"description": "RapiDoc - Open API spec viewer with built in console",
"author": "Mrinmoy Majumdar <mrin9@yahoo.com>",
"repository": {
"type": "git",
"url": "https://github.com/mrin9/RapiDoc.git"
},
"license": "MIT",
"keywords": [
"OpenAPI",
"OpenAPI Specification",
"Swagger",
"JSON-Schema",
"API",
"REST",
"documentation",
"Custom Element",
"Web Component",
"rapidoc",
"swagger",
"swagger ui",
"openapi ui",
"openapi themes",
"swagger themes"
],
"main": "dist/rapidoc-min.js",
"module": "dist/rapidoc-min.js",
"mode": "production",
"dependencies": {
"@apitools/openapi-parser": "^0.0.8",
"base64-arraybuffer": "^0.2.0",
"lit-element": "2.5.1",
"lit-html": "1.4.1",
"marked": "^2.0.5",
"prismjs": "^1.23.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --mode=production",
"build_windows": "set NODE_ENV='production'&&webpack --mode=production",
"serve": "webpack serve --mode=development",
"serve-prod": "webpack serve --mode=production",
"serve1": "node --trace-deprecation ./node_modules/webpack/bin/webpack serve",
"lint": "./node_modules/eslint/bin/eslint.js ./src/**",
"lint-fix": "./node_modules/eslint/bin/eslint.js --fix ./src/**"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"babel-plugin-template-html-minifier": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^8.0.0",
"css-loader": "^5.2.5",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-loader": "^4.0.2",
"eslint-webpack-plugin": "2.5.4",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"inspectpack": "^4.7.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.2",
"webpack": "^5.37.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"engines": {
"node": ">=10.21.0"
}
}