status-web/apps/web/package.json

43 lines
1.0 KiB
JSON

{
"name": "web",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "TAMAGUI_TARGET=web vite",
"build": "tsc && TAMAGUI_TARGET=web vite build",
"preview": "TAMAGUI_TARGET=web vite preview",
"lint": "eslint src",
"typecheck": "tsc",
"clean": "rimraf node_modules dist .turbo"
},
"dependencies": {
"@status-im/components": "*",
"@status-im/icons": "*",
"@tamagui/core": "1.74.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "^0.18.12",
"use-resize-observer": "^9.1.0"
},
"devDependencies": {
"@status-im/eslint-config": "*",
"@tamagui/vite-plugin": "1.74.21",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.2.0",
"next": "^13.4.12",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.3",
"vite": "^4.2.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{md,mdx,yml,yaml,json}": [
"prettier --write"
]
}
}