forked from AndrewWalsh/openapi-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.79 KB
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
{
"name": "openapi-devtools",
"description": "Effortlessly discover API behaviour with a Chrome extension that automatically generates OpenAPI specifications in real time for any app or website.",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "vitest",
"dev": "vite",
"build": "rimraf dist && tsc && vite build && npm run zip",
"zip": "rimraf resources/dist.zip && zip -r resources/dist.zip dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"decode-uri-component": "^0.4.1",
"framer-motion": "^10.16.4",
"fuse.js": "^6.6.2",
"genson-js": "^0.0.8",
"lodash": "^4.17.21",
"openapi3-ts": "^4.1.2",
"radix3": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.7",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"redoc": "^2.1.2",
"store2": "^2.14.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.19",
"@seriousme/openapi-schema-validator": "^2.1.2",
"@types/chrome": "^0.0.246",
"@types/lodash": "^4.14.199",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-window": "^1.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@vitejs/plugin-react": "^4.1.0",
"eslint": "^8.51.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6"
},
"overrides": {
"@apidevtools/json-schema-ref-parser": "^11.1.0"
}
}