zipline/package.json

86 lines
2.7 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": {
2022-10-22 16:23:23 -05:00
"dev": "npm-run-all build:server dev:run",
"dev:run": "cross-env REACT_EDITOR=code NODE_ENV=development node --enable-source-maps dist/server",
"build": "npm-run-all build:server build:schema build:next",
"build-ci": "cross-env ZIPLINE_DOCKER_BUILD=1 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",
"format": "prettier --write ./src/**/*.{ts,tsx} ./*.{md,js,json,yml}",
2022-02-21 01:01:31 -05:00
"migrate:dev": "prisma migrate dev --create-only",
2022-10-22 16:23:23 -05:00
"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",
2022-08-26 22:06:57 -05:00
"docker:build-dev": "docker-compose --file docker-compose.dev.yml up --build",
2022-10-22 16:23:23 -05:00
"scripts:read-config": "node dist/scripts/read-config"
2021-06-23 13:20:20 -05:00
},
"dependencies": {
2022-10-22 16:23:23 -05:00
"@dicedtomato/mantine-data-grid": "0.0.23",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/core": "^5.6.1",
"@mantine/dropzone": "^5.6.1",
"@mantine/form": "^5.6.1",
"@mantine/hooks": "^5.6.1",
"@mantine/modals": "^5.6.1",
"@mantine/next": "^5.6.1",
"@mantine/notifications": "^5.6.1",
"@mantine/nprogress": "^5.6.1",
"@mantine/prism": "^5.6.1",
"@prisma/client": "^4.5.0",
"@prisma/internals": "^4.5.0",
"@prisma/migrate": "^4.5.0",
"@sapphire/shapeshift": "^3.7.0",
2022-10-22 16:23:23 -05:00
"@tanstack/react-query": "^4.13.0",
"argon2": "^0.30.1",
"chart.js": "^3.9.1",
"chartjs-plugin-datalabels": "^2.1.0",
"color-hash": "^2.0.1",
2022-06-16 16:22:26 -05:00
"colorette": "^2.0.19",
"cookie": "^0.5.0",
2022-10-22 16:23:23 -05:00
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"fflate": "^0.7.4",
"find-my-way": "^7.3.1",
"minio": "^7.0.32",
2022-08-22 00:24:56 -05:00
"ms": "canary",
2022-06-16 16:22:26 -05:00
"multer": "^1.4.5-lts.1",
2022-10-22 16:23:23 -05:00
"next": "^12.3.1",
"prisma": "^4.5.0",
2022-06-16 16:22:26 -05:00
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
2022-06-16 16:22:26 -05:00
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
2022-10-22 16:23:23 -05:00
"recoil": "^0.7.6",
"sharp": "^0.31.1"
2021-06-23 13:20:20 -05:00
},
"devDependencies": {
2022-06-16 16:22:26 -05:00
"@types/cookie": "^0.5.1",
2022-10-22 16:23:23 -05:00
"@types/minio": "^7.0.14",
2022-06-16 16:22:26 -05:00
"@types/multer": "^1.4.7",
2022-10-22 16:23:23 -05:00
"@types/node": "16.11.68",
"@types/react": "^18.0.21",
"@types/sharp": "^0.31.0",
"cross-env": "^7.0.3",
2022-10-22 16:23:23 -05:00
"esbuild": "^0.15.12",
"eslint": "^8.26.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
2021-06-23 13:20:20 -05:00
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
2022-10-22 16:23:23 -05:00
"typescript": "^4.8.4"
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"
},
2022-10-22 16:23:23 -05:00
"packageManager": "yarn@3.2.4"
}