-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "@docker/desktop-plugin-tailscale",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@docker/extension-api-client": "^0.3.4",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-tooltip": "^1.1.3",
"classnames": "^2.5.1",
"mitt": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^3.6.8"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"prettier": "^3.3.3",
"react-scripts": "^5.0.1",
"tailwindcss": "^3.4.14",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": [
"Chrome 91"
],
"prettier": {
"semi": false,
"printWidth": 80,
"trailingComma": "all"
},
"packageManager": "yarn@4.5.1"
}