zipline/package.json

83 lines
2.3 KiB
JSON
Raw Normal View History

2021-06-23 13:20:20 -05:00
{
"name": "zipline",
2022-08-26 22:04:25 -05:00
"version": "3.5.1",
"license": "MIT",
2021-06-23 13:20:20 -05:00
"scripts": {
"dev": "REACT_EDITOR=code NODE_ENV=development tsx src/server",
2022-08-26 22:06:57 -05:00
"build": "npm-run-all build:schema build:next",
2021-06-23 13:20:20 -05:00
"build:next": "next build",
"build:schema": "prisma generate --schema=prisma/schema.prisma",
2022-08-26 22:06:57 -05:00
2022-02-21 01:01:31 -05:00
"migrate:dev": "prisma migrate dev --create-only",
"start": "tsx src/server",
2021-06-23 13:20:20 -05:00
"lint": "next lint",
2022-08-26 22:06:57 -05:00
"docker:run": "docker-compose up -d",
"docker:down": "docker-compose down",
2022-08-26 22:06:57 -05:00
"docker:build-dev": "docker-compose --file docker-compose.dev.yml up --build",
"scripts:read-config": "tsx src/scripts/read-config"
2021-06-23 13:20:20 -05:00
},
"dependencies": {
2022-08-24 22:37:57 -05:00
"@dicedtomato/mantine-data-grid": "0.0.21",
2022-07-28 13:03:22 -05:00
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
2021-06-23 13:20:20 -05:00
"@iarna/toml": "2.2.5",
2022-07-28 13:03:22 -05:00
"@mantine/core": "^5.0.0",
"@mantine/dropzone": "^5.0.0",
"@mantine/form": "^5.0.0",
"@mantine/hooks": "^5.0.0",
"@mantine/modals": "^5.0.0",
"@mantine/next": "^5.0.0",
"@mantine/notifications": "^5.0.0",
"@mantine/nprogress": "^5.0.0",
"@mantine/prism": "^5.0.0",
"@prisma/client": "^4.1.0",
"@prisma/internals": "^4.1.0",
"@prisma/migrate": "^4.1.0",
2022-06-16 16:22:26 -05:00
"@reduxjs/toolkit": "^1.8.2",
"argon2": "^0.28.5",
"colorette": "^2.0.19",
"cookie": "^0.5.0",
2022-08-17 17:01:23 -05:00
"dayjs": "^1.11.5",
"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-08-22 00:24:56 -05:00
"ms": "canary",
2022-06-16 16:22:26 -05:00
"multer": "^1.4.5-lts.1",
"next": "^12.1.6",
2022-07-28 13:03:22 -05:00
"prisma": "^4.1.0",
2022-06-16 16:22:26 -05:00
"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",
2022-08-16 16:04:11 -05:00
"sharp": "^0.30.7",
2022-06-16 16:22:26 -05:00
"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-08-16 16:04:11 -05:00
"@types/sharp": "^0.30.5",
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",
"tsx": "^3.8.0",
2022-06-16 16:22:26 -05:00
"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"
2022-08-24 22:37:57 -05:00
}