mirror of
https://github.com/diced/zipline.git
synced 2026-01-05 09:18:24 -08:00
106 lines
3.5 KiB
JSON
Executable File
106 lines
3.5 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.js",
|
|
"validate": "pnpm run \"/^validate:.*/\"",
|
|
"validate:lint": "eslint --cache --ignore-path .gitignore --fix .",
|
|
"validate:format": "prettier --write --ignore-path .gitignore .",
|
|
"db:prototype": "prisma db push && prisma generate"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/plots": "^1.2.6",
|
|
"@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",
|
|
"@github/webauthn-json": "^2.1.1",
|
|
"@mantine/code-highlight": "^7.2.2",
|
|
"@mantine/core": "^7.2.2",
|
|
"@mantine/dates": "^7.2.2",
|
|
"@mantine/dropzone": "^7.2.2",
|
|
"@mantine/form": "^7.2.2",
|
|
"@mantine/hooks": "^7.2.2",
|
|
"@mantine/modals": "^7.2.2",
|
|
"@mantine/notifications": "^7.2.2",
|
|
"@prisma/client": "^5.6.0",
|
|
"@prisma/internals": "^5.6.0",
|
|
"@prisma/migrate": "^5.6.0",
|
|
"@tabler/icons-react": "^2.42.0",
|
|
"@xoi/gps-metadata-remover": "^1.1.2",
|
|
"argon2": "^0.30.3",
|
|
"bytes": "^3.1.2",
|
|
"clsx": "^2.0.0",
|
|
"colorette": "^2.0.20",
|
|
"commander": "^12.0.0",
|
|
"dayjs": "^1.11.10",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"fast-glob": "^3.3.2",
|
|
"fastify": "^4.26.2",
|
|
"fastify-plugin": "^4.5.1",
|
|
"fluent-ffmpeg": "^2.1.3",
|
|
"highlight.js": "^11.9.0",
|
|
"isomorphic-dompurify": "^1.11.0",
|
|
"katex": "^0.16.9",
|
|
"mantine-datatable": "^7.1.7",
|
|
"ms": "^2.1.3",
|
|
"multer": "1.4.5-lts.1",
|
|
"next": "^14.0.3",
|
|
"otplib": "^12.0.1",
|
|
"prisma": "^5.6.0",
|
|
"qrcode": "^1.5.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-markdown": "^8.0.7",
|
|
"remark-gfm": "^3.0.1",
|
|
"sharp": "^0.32.6",
|
|
"swr": "^2.2.0",
|
|
"znv": "^0.3.2",
|
|
"zod": "^3.22.4",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bytes": "^3.1.4",
|
|
"@types/express": "^4.17.21",
|
|
"@types/fluent-ffmpeg": "^2.1.24",
|
|
"@types/katex": "^0.16.7",
|
|
"@types/ms": "^0.7.34",
|
|
"@types/multer": "^1.4.11",
|
|
"@types/node": "^20.10.1",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/react": "^18.2.39",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@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.31",
|
|
"postcss-preset-mantine": "^1.11.0",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"prettier": "^3.1.0",
|
|
"tsup": "^7.2.0",
|
|
"tsx": "^4.7.2",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "pnpm@9.1.4"
|
|
}
|