mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 13:05:46 +00:00
d5ac18d2c4
Also allows us to use absolute import paths (see change in index.tsx). Updates tailscale/corp#13775 Signed-off-by: Sonia Appasamy <sonia@tailscale.com>
37 lines
767 B
JSON
37 lines
767 B
JSON
{
|
|
"name": "webclient",
|
|
"version": "0.0.1",
|
|
"license": "BSD-3-Clause",
|
|
"engines": {
|
|
"node": "18.16.1",
|
|
"yarn": "1.22.19"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.20",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
"tailwindcss": "^3.1.6",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^4.3.9",
|
|
"vite-tsconfig-paths": "^3.5.0",
|
|
"vite-plugin-svgr": "^3.2.0",
|
|
"vite-plugin-rewrite-all": "^1.0.1",
|
|
"vitest": "^0.32.0"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"start": "vite",
|
|
"lint": "tsc --noEmit",
|
|
"test": "vitest"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 80
|
|
}
|
|
}
|