This repository was archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
72 lines (72 loc) · 2.56 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
{
"name": "swagger-viewer",
"version": "3.1.1",
"engines": {
"node": "^16",
"npm": "0",
"yarn": "^1"
},
"scripts": {
"build:build": "vite build",
"build:cleanup": "rm -rf packages/* && mkdir -p packages",
"build:package": "N=`node -p \"require('./package.json').name\"` && V=`node -p \"require('./package.json').version\"` && zip -r ./packages/$N-v$V.zip dist",
"build": "run-s build:cleanup build:build build:package",
"dev": "vite",
"eslint-print-config": "eslint --print-config src/index.tsx > misc/eslint-print-config.json",
"lint-dry:eslint": "eslint -c .eslintrc.js --max-warnings=0 .",
"lint-dry:format": "prettier --check .",
"lint-dry": "npm-run-all --parallel --continue-on-error lint-dry:* lint:tsc",
"lint:eslint": "eslint -c .eslintrc.js --fix .",
"lint:format": "prettier --write .",
"lint:tsc": "tsc --noEmit",
"lint": "npm-run-all --parallel --continue-on-error lint:*",
"test": "vitest",
"update-all": "npx --yes [email protected] -u --reject \"/^(@types/node|css-loader|style-loader|terser-webpack-plugin)$/\""
},
"devDependencies": {
"@crxjs/vite-plugin": "1.0.12",
"@testing-library/react": "13.3.0",
"@types/chrome": "0.0.191",
"@types/eslint": "8.4.3",
"@types/js-yaml": "4.0.5",
"@types/jsdom": "16.2.14",
"@types/node": "16.11.7",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/styled-components": "5.1.25",
"@types/swagger-ui-react": "4.11.0",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"@vitejs/plugin-react": "1.3.2",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-n": "15.2.3",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"happy-dom": "5.3.4",
"jest": "28.1.2",
"jest-styled-components": "7.0.8",
"jsdom": "20.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "3.0.0",
"typescript": "4.7.4",
"vite": "2.9.13",
"vitest": "0.16.0"
},
"dependencies": {
"js-yaml": "4.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "5.3.5",
"swagger-ui-react": "4.12.0"
}
}