Files
zipline/package.json
2023-08-30 20:08:49 -07:00

90 lines
2.8 KiB
JSON

{
"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": "pnpm run build:server && pnpm run dev:server",
"dev:server": "NODE_ENV=development DEBUG=zipline node --require dotenv/config --enable-source-maps ./build/server.js",
"start": "NODE_ENV=production node --require dotenv/config --enable-source-maps ./build/server.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": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@github/webauthn-json": "^2.1.1",
"@mantine/core": "^6.0.14",
"@mantine/dates": "^6.0.14",
"@mantine/dropzone": "^6.0.14",
"@mantine/form": "^6.0.14",
"@mantine/hooks": "^6.0.14",
"@mantine/modals": "^6.0.14",
"@mantine/next": "^6.0.14",
"@mantine/notifications": "^6.0.14",
"@mantine/nprogress": "^6.0.14",
"@prisma/client": "^5.2.0",
"@prisma/internals": "^5.2.0",
"@prisma/migrate": "^5.2.0",
"@tabler/icons-react": "^2.23.0",
"@xoi/gps-metadata-remover": "^1.1.2",
"argon2": "^0.30.3",
"bytes": "^3.1.2",
"colorette": "^2.0.20",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"highlight.js": "^11.8.0",
"isomorphic-dompurify": "^1.8.0",
"katex": "^0.16.8",
"mantine-datatable": "^2.8.2",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"next": "^13.4.7",
"otplib": "^12.0.1",
"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.4",
"swr": "^2.2.0",
"znv": "^0.3.2",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/express": "^4.17.17",
"@types/katex": "^0.16.0",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@types/qrcode": "^1.5.1",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.2",
"prisma": "^5.2.0",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.7.0"
}