mirror of
https://github.com/Screenly/Anthias.git
synced 2026-06-10 17:18:43 -04:00
Bumps the bun group with 3 updates: [@happy-dom/global-registrator](https://github.com/capricorn86/happy-dom), [prettier](https://github.com/prettier/prettier) and [typescript](https://github.com/microsoft/TypeScript). Updates `@happy-dom/global-registrator` from 15.11.7 to 20.9.0 - [Release notes](https://github.com/capricorn86/happy-dom/releases) - [Commits](https://github.com/capricorn86/happy-dom/compare/v15.11.7...v20.9.0) Updates `prettier` from 3.8.1 to 3.8.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.8.1...3.8.3) Updates `typescript` from 5.9.3 to 6.0.3 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: "@happy-dom/global-registrator" dependency-version: 20.9.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: bun - dependency-name: prettier dependency-version: 3.8.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: bun - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: bun ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
53 lines
2.3 KiB
JSON
53 lines
2.3 KiB
JSON
{
|
|
"name": "anthias",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"build:js": "bun build ./static/src/index.tsx --outfile=./static/dist/js/anthias.js --target=browser --minify --define process.env.NODE_ENV='\"production\"' --define process.env.ENVIRONMENT='\"production\"'",
|
|
"build:css": "bunx sass static/sass/anthias.scss static/dist/css/anthias.css --style=compressed --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
|
|
"build": "bun run build:js && bun run build:css",
|
|
"dev:js": "bun build ./static/src/index.tsx --outfile=./static/dist/js/anthias.js --target=browser --sourcemap=linked --watch --define process.env.NODE_ENV='\"development\"' --define process.env.ENVIRONMENT='\"development\"'",
|
|
"dev:css": "bunx sass static/sass/anthias.scss static/dist/css/anthias.css --watch --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
|
|
"dev": "bash -c 'bun run dev:js & js=$!; bun run dev:css & css=$!; trap \"kill $js $css 2>/dev/null\" EXIT INT TERM; wait -n; exit $?'",
|
|
"lint:check": "eslint static/src",
|
|
"lint:fix": "eslint static/src --fix",
|
|
"format:check": "prettier --check static/src",
|
|
"format:fix": "prettier --write static/src",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.1.0",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@reduxjs/toolkit": "^2.11.2",
|
|
"bootstrap": "^5.3.8",
|
|
"jquery": "^4.0.0",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"react-icons": "^5.6.0",
|
|
"react-redux": "^9.1.0",
|
|
"react-router": "^7.13.1",
|
|
"react-router-dom": "^7.13.1",
|
|
"sweetalert2": "^11.26.23"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint-react/eslint-plugin": "^4.2.1",
|
|
"@happy-dom/global-registrator": "^20.9.0",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/bootstrap": "^5.2.10",
|
|
"@types/jquery": "^4.0.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
"@typescript-eslint/parser": "^8.58.0",
|
|
"classnames": "^2.5.1",
|
|
"eslint": "^10.1.0",
|
|
"msw": "^2.12.12",
|
|
"prettier": "3.8.3",
|
|
"sass": "^1.98.0",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|