Cybersecurity-Projects/PROJECTS/advanced/encrypted-p2p-chat/frontend/package.json

49 lines
1.4 KiB
JSON

{
"name": "encrypted-p2p-chat-frontend",
"version": "1.0.0",
"description": "End-to-end encrypted P2P chat frontend with SolidJS",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"format": "biome format --write .",
"format:prettier": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@nanostores/persistent": "^1.3.3",
"@nanostores/solid": "^1.1.1",
"@solidjs/router": "^0.15.4",
"@tanstack/solid-query": "^5.90.23",
"nanostores": "^1.1.0",
"solid-js": "^1.9.11"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.2.0",
"@types/node": "^25.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-solid": "^0.14.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.2",
"vite-plugin-solid": "^2.11.10",
"vitest": "^2.1.5"
}
}