-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "shlink-api-spec-ui",
"description": "Web UI to load Shlink's sync and async API specs",
"author": "Alejandro Celaya Alastrué",
"readmeFilename": "README.md",
"private": false,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shlinkio/shlink.io"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"start": "vite serve --host=0.0.0.0",
"types": "tsc",
"build": "npm run types && vite build"
},
"dependencies": {
"@asyncapi/react-component": "2.5.1",
"@vitejs/plugin-react": "^4.3.4",
"classnames": "^2.5.1",
"compare-versions": "^6.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-headroom": "^3.2.1",
"react-router-dom": "^7.1.5",
"swagger-ui": "^5.18.3",
"swagger-ui-react": "^5.18.3",
"vite": "^6.0.11"
},
"devDependencies": {
"@shlinkio/eslint-config-js-coding-standard": "~3.3.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@tailwindcss/vite": "^4.0.2",
"@types/node": "^22.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-headroom": "^3.2.3",
"@types/swagger-ui-react": "^5.18.0",
"eslint": "^9.19.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"tailwindcss": "^4.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}