-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
63 lines (63 loc) · 2.02 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
{
"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": "tsc && vite build && web-ext run -s dist",
"build": "tsc && vite build && web-ext build --overwrite-dest -s dist",
"lint": "eslint --ext ts,tsx --fix ."
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"cookie": "^0.6.0",
"copy-to-clipboard": "^3.3.3",
"decode-uri-component": "^0.4.1",
"fast-querystring": "^1.1.2",
"framer-motion": "^10.16.4",
"fuse.js": "^6.6.2",
"genson-js": "^0.0.8",
"json-stable-stringify": "^1.0.2",
"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.3",
"store2": "^2.14.2",
"truncate-middle": "^1.0.6",
"validator": "^13.11.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.19",
"@seriousme/openapi-schema-validator": "^2.1.2",
"@types/chrome": "^0.0.246",
"@types/cookie": "^0.5.4",
"@types/har-format": "^1.2.15",
"@types/json-stable-stringify": "^1.0.35",
"@types/lodash": "^4.14.199",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-window": "^1.8.7",
"@types/truncate-middle": "^1.0.3",
"@types/validator": "^13.11.9",
"@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",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6",
"web-ext": "^7.11.0"
}
}