| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {
- "name": "growi",
- "version": "7.0.0-RC.0",
- "description": "Team collaboration software using markdown",
- "tags": [
- "wiki",
- "communication",
- "documentation",
- "collaboration"
- ],
- "author": "Yuki Takei <yuki@weseek.co.jp>",
- "contributors": [],
- "license": "MIT",
- "homepage": "https://growi.org",
- "repository": {
- "type": "git",
- "url": "https://github.com/weseek/growi.git"
- },
- "bugs": {
- "url": "https://github.com/weseek/growi/issues"
- },
- "private": true,
- "workspaces": {
- "packages": [
- "packages/*",
- "apps/*"
- ],
- "nohoist": [
- "**/uvu/*"
- ]
- },
- "scripts": {
- "bootstrap": "yarn install",
- "start": "yarn app:server",
- "prestart": "yarn app:build",
- "app:build": "turbo run build --filter @growi/app",
- "app:server": "cd apps/app && yarn server",
- "slackbot-proxy:build": "turbo run build --filter @growi/slackbot-proxy",
- "slackbot-proxy:server": "cd apps/slackbot-proxy && yarn start:prod",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "dependencies": {
- "cross-env": "^7.0.0",
- "dotenv-flow": "^3.2.0",
- "npm-run-all": "^4.1.5",
- "ts-deepmerge": "^3.0.0",
- "tslib": "^2.3.1",
- "yargs": "^17.7.1"
- },
- "devDependencies": {
- "@swc-node/register": "^1.6.2",
- "@swc/core": "^1.3.36",
- "@swc/helpers": "^0.4.14",
- "@testing-library/cypress": "^9.0.0",
- "@types/css-modules": "^1.0.2",
- "@types/eslint": "^8.37.0",
- "@types/estree": "^1.0.1",
- "@types/node": "^17.0.43",
- "@types/path-browserify": "^1.0.0",
- "@typescript-eslint/eslint-plugin": "^5.59.7",
- "@typescript-eslint/parser": "^5.59.7",
- "@vitejs/plugin-react": "^4.0.3",
- "@vitest/coverage-c8": "^0.31.1",
- "@vitest/ui": "^0.31.1",
- "cypress": "^12.17.2",
- "cypress-wait-until": "^1.7.2",
- "eslint": "^8.41.0",
- "eslint-config-next": "^12.1.6",
- "eslint-config-weseek": "^2.1.1",
- "eslint-import-resolver-typescript": "^3.2.5",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-react": "^7.30.1",
- "eslint-plugin-react-hooks": "^4.6.0",
- "eslint-plugin-rulesdir": "^0.2.2",
- "eslint-plugin-vitest": "^0.2.3",
- "glob": "^8.1.0",
- "mock-require": "^3.0.3",
- "path-browserify": "^1.0.1",
- "postcss": "^8.4.5",
- "postcss-scss": "^4.0.3",
- "reg-keygen-git-hash-plugin": "^0.11.1",
- "reg-notify-github-plugin": "^0.11.1",
- "reg-notify-slack-plugin": "^0.11.0",
- "reg-publish-s3-plugin": "^0.11.0",
- "reg-suit": "^0.12.2",
- "rollup-plugin-node-externals": "^6.1.1",
- "shx": "^0.3.4",
- "stylelint": "^14.2.0",
- "stylelint-config-recess-order": "^3.0.0",
- "ts-node-dev": "^2.0.0",
- "tsconfig-paths": "^3.9.0",
- "typescript": "~5.0.0",
- "vite": "^4.4.0",
- "vite-plugin-dts": "^2.3.0",
- "vite-tsconfig-paths": "^4.2.0",
- "vitest": "^0.31.4",
- "vitest-mock-extended": "^1.1.3"
- },
- "engines": {
- "node": "^16 || ^18",
- "npm": ">=8.5 < 9",
- "yarn": ">=1.22 <2"
- }
- }
|