-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
77
78
79
{
"name": "swagger-type-generator",
"displayName": "swagger-type-generator",
"version": "1.2.2",
"description": "swagger chrome extension generate typescript, axios, fetch code",
"license": "MIT",
"author": {
"name": "ww8007",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/whatsOver/swagger"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:watch": "cross-env __DEV__=true vite build --watch",
"build:hmr": "node node_modules/rollup/dist/bin/rollup --config utils/reload/rollup.config.js",
"wss": "node utils/reload/initReloadServer.js",
"dev": "npm run build:hmr && run-p wss build:watch",
"zip": "rm -rf dist && vite build && zip extension.zip -r ./dist/*",
"test": "jest",
"test:watch": "jest --watch"
},
"type": "module",
"dependencies": {
"@fxts/core": "^0.15.1",
"@tanstack/react-query": "^4.29.5",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/recipes": "^0.5.1",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"highlight.js": "^11.8.0",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.11.1",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"rollup-plugin-copy": "^3.4.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.224",
"@types/jest": "29.0.3",
"@types/node": "^20.10.6",
"@types/react": "^18.2.42",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/react-dom": "18.2.4",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.6",
"@vanilla-extract/vite-plugin": "^3.8.1",
"@vitejs/plugin-react": "4.0.0",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"fs-extra": "11.1.1",
"jest": "29.0.3",
"jest-environment-jsdom": "29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"rollup": "3.21.6",
"sass": "1.62.1",
"ts-jest": "29.0.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"vite": "4.3.5",
"webpack": "^5.0.0",
"ws": "8.13.0"
}
}