mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
JSON
87 lines
2.6 KiB
JSON
{
|
|
"name": "filepizza",
|
|
"version": "2.0.0",
|
|
"description": "Free peer-to-peer file transfers in your browser.",
|
|
"author": "Alex Kern <alex@kern.io> (http://kern.io)",
|
|
"license": "BSD-3-Clause",
|
|
"homepage": "https://github.com/kern/filepizza",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"dev:full": "docker compose up redis coturn -d && COTURN_ENABLED=true REDIS_URL=redis://localhost:6379 next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"start:peerjs": "./bin/peerjs.js",
|
|
"lint:check": "eslint 'src/**/*.ts[x]'",
|
|
"lint:fix": "eslint 'src/**/*.ts[x]' --fix",
|
|
"docker:build": "docker compose build",
|
|
"docker:up": "docker compose up -d",
|
|
"docker:down": "docker compose down",
|
|
"docker:logs": "docker compose logs -f",
|
|
"docker:ps": "docker compose ps",
|
|
"docker:restart": "docker compose restart",
|
|
"docker:clean": "docker compose down -v --rmi all",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
"type:check": "tsc --noEmit",
|
|
"ci": "pnpm lint:check && pnpm format:check && pnpm type:check && pnpm build && pnpm docker:build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:kern/filepizza.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/kern/filepizza/issues"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.55.2",
|
|
"autoprefixer": "^10.4.20",
|
|
"debug": "^4.3.6",
|
|
"express": "^4.19.2",
|
|
"ioredis": "^4.28.5",
|
|
"next": "^15.1.3",
|
|
"next-themes": "^0.4.4",
|
|
"next-view-transitions": "^0.3.4",
|
|
"nodemon": "^3.0.0",
|
|
"peer": "^0.5.3",
|
|
"peerjs": "^1.5.4",
|
|
"postcss": "^8.4.44",
|
|
"react": "^18.2.0",
|
|
"react-device-detect": "^1.17.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-qr-code": "^2.0.15",
|
|
"streamsaver": "^2.0.6",
|
|
"tailwindcss": "^3.4.10",
|
|
"web-streams-polyfill": "^3.3.3",
|
|
"webrtcsupport": "^2.2.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.12",
|
|
"@types/ioredis": "^4.28.10",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^19.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
"@typescript-eslint/parser": "^8.18.2",
|
|
"eslint": "^9.17.0",
|
|
"eslint-config-next": "^15.1.3",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-react": "^7.37.3",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^10.5.4",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^4.9.5",
|
|
"typescript-eslint": "^8.18.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
} |