Files
zipline/package.json
2024-12-13 15:39:37 -08:00

110 lines
3.7 KiB
JSON
Executable File

{
"name": "zipline",
"private": true,
"license": "MIT",
"version": "4.0.0-dev+1",
"scripts": {
"build": "pnpm run \"/^build:.*/\"",
"build:prisma": "prisma generate",
"build:next": "next build",
"build:server": "tsup",
"dev": "NODE_ENV=development DEBUG=zipline tsx --require dotenv/config --enable-source-maps ./src/server",
"dev:inspector": "NODE_ENV=development DEBUG=zipline tsx --require dotenv/config --inspect=0.0.0.0:9229 --enable-source-maps ./src/server",
"dev:ctl": "tsup --config tsup.ctl.config.ts --watch",
"start": "NODE_ENV=production node --require dotenv/config --enable-source-maps ./build/server",
"start:inspector": "NODE_ENV=production node --require dotenv/config --inspect=0.0.0.0:9229 --enable-source-maps ./build/server",
"ctl": "NODE_ENV=production node --require dotenv/config --enable-source-maps ./build/ctl",
"validate": "pnpm run \"/^validate:.*/\"",
"validate:lint": "eslint --cache --ignore-path .gitignore --fix .",
"validate:format": "prettier --write --ignore-path .gitignore .",
"db:prototype": "prisma db push --skip-generate && prisma generate --no-hints"
},
"dependencies": {
"@ant-design/plots": "^1.2.6",
"@aws-sdk/client-s3": "^3.654.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/multipart": "^8.2.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/sensible": "^5.5.0",
"@fastify/static": "^7.0.4",
"@github/webauthn-json": "^2.1.1",
"@mantine/code-highlight": "^7.12.2",
"@mantine/core": "^7.12.2",
"@mantine/dates": "^7.12.2",
"@mantine/dropzone": "^7.12.2",
"@mantine/form": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@mantine/modals": "^7.12.2",
"@mantine/notifications": "^7.12.2",
"@prisma/client": "^5.19.1",
"@prisma/internals": "^5.19.1",
"@prisma/migrate": "^5.19.1",
"@tabler/icons-react": "^2.47.0",
"@xoi/gps-metadata-remover": "^1.1.2",
"argon2": "^0.30.3",
"bytes": "^3.1.2",
"clsx": "^2.1.1",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"fastify": "^4.28.1",
"fastify-plugin": "^4.5.1",
"fflate": "^0.8.2",
"fluent-ffmpeg": "^2.1.3",
"highlight.js": "^11.10.0",
"iron-session": "^8.0.3",
"isomorphic-dompurify": "^1.13.0",
"katex": "^0.16.11",
"mantine-datatable": "^7.12.4",
"ms": "^2.1.3",
"multer": "1.4.5-lts.1",
"next": "^14.2.13",
"otplib": "^12.0.1",
"prisma": "^5.19.1",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1",
"sharp": "^0.32.6",
"swr": "^2.2.5",
"znv": "^0.3.2",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/katex": "^0.16.7",
"@types/ms": "^0.7.34",
"@types/multer": "^1.4.12",
"@types/node": "^20.16.5",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"tsup": "^7.2.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.10.0"
}