zipline/package.json

70 lines
2 KiB
JSON
Raw Normal View History

2021-06-23 13:20:20 -05:00
{
"name": "zipline",
2022-07-15 16:29:44 -05:00
"version": "3.4.8",
"license": "MIT",
2021-06-23 13:20:20 -05:00
"scripts": {
2022-06-20 12:25:22 -05:00
"dev": "node esbuild.config.js && REACT_EDITOR=code NODE_ENV=development node dist/server",
"build": "npm-run-all build:server build:schema build:next",
"build:server": "node esbuild.config.js",
2021-06-23 13:20:20 -05:00
"build:next": "next build",
"build:schema": "prisma generate --schema=prisma/schema.prisma",
2022-02-21 01:01:31 -05:00
"migrate:dev": "prisma migrate dev --create-only",
"start": "node dist/server",
2021-06-23 13:20:20 -05:00
"lint": "next lint",
"docker:run": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:build-dev": "docker-compose --file docker-compose.dev.yml up --build"
2021-06-23 13:20:20 -05:00
},
"dependencies": {
"@iarna/toml": "2.2.5",
2022-06-16 16:22:26 -05:00
"@mantine/core": "^4.2.9",
"@mantine/dropzone": "^4.2.9",
"@mantine/hooks": "^4.2.9",
"@mantine/modals": "^4.2.9",
"@mantine/next": "^4.2.9",
"@mantine/notifications": "^4.2.9",
"@mantine/prism": "^4.2.9",
"@prisma/client": "^3.15.2",
"@prisma/migrate": "^3.15.2",
"@prisma/sdk": "^3.15.2",
"@reduxjs/toolkit": "^1.8.2",
"argon2": "^0.28.5",
"colorette": "^2.0.19",
"cookie": "^0.5.0",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
2022-06-16 16:22:26 -05:00
"fecha": "^4.2.3",
"fflate": "^0.7.3",
2022-06-16 16:22:26 -05:00
"find-my-way": "^6.3.0",
2022-06-25 12:07:19 -05:00
"minio": "^7.0.28",
2022-06-16 16:22:26 -05:00
"multer": "^1.4.5-lts.1",
"next": "^12.1.6",
"prisma": "^3.15.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
2022-06-16 16:22:26 -05:00
"react-redux": "^8.0.2",
"react-table": "^7.8.0",
"redux": "^4.2.0",
"yup": "^0.32.11"
2021-06-23 13:20:20 -05:00
},
"devDependencies": {
2022-06-16 16:22:26 -05:00
"@types/cookie": "^0.5.1",
2022-06-25 12:07:19 -05:00
"@types/minio": "^7.0.13",
2022-06-16 16:22:26 -05:00
"@types/multer": "^1.4.7",
2021-06-23 13:20:20 -05:00
"@types/node": "^15.12.2",
2022-06-16 16:22:26 -05:00
"babel-plugin-import": "^1.13.5",
"esbuild": "^0.14.44",
2021-09-25 11:39:51 -05:00
"eslint": "^7.32.0",
2022-06-16 16:22:26 -05:00
"eslint-config-next": "12.1.6",
2021-06-23 13:20:20 -05:00
"npm-run-all": "^4.1.5",
2022-06-16 16:22:26 -05:00
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
2021-06-23 13:20:20 -05:00
},
"repository": {
"type": "git",
2021-09-17 22:39:20 -05:00
"url": "https://github.com/diced/zipline.git"
},
"packageManager": "yarn@3.2.1"
}