AFFiNE/package.json
2023-03-20 02:05:02 -05:00

69 lines
2.2 KiB
JSON

{
"name": "AFFiNE",
"version": "0.3.0",
"private": true,
"author": "toeverything",
"license": "MPL-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "yarn workspace @affine/app dev",
"dev:ac": "NODE_API_SERVER=ac yarn workspace @affine/app dev",
"dev:local": "NODE_API_SERVER=local yarn workspace @affine/app dev",
"dev:app": "yarn workspace @affine/electron dev:app",
"build": "yarn workspace @affine/app build",
"build:client": "yarn workspace @affine/client-app build:app",
"build:storybook": "yarn workspace @affine/component build-storybook",
"export": "yarn workspace @affine/app export",
"start": "yarn workspace @affine/app start",
"lint": "eslint . --ext .js,mjs,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "playwright test",
"test:coverage": "COVERAGE=true yarn test --forbid-only",
"test:unit": "vitest --run",
"test:unit:ui": "vitest --ui",
"test:unit:coverage": "vitest run --coverage",
"postinstall": "husky install",
"notify": "node scripts/notify.mjs"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
},
"devDependencies": {
"@perfsee/sdk": "^1.5.1",
"@playwright/test": "^1.31.2",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.21.3",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-istanbul": "^0.29.3",
"@vitest/ui": "^0.29.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fake-indexeddb": "4.0.1",
"got": "^12.6.0",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vite": "^4.2.0",
"vitest": "^0.29.3",
"vitest-fetch-mock": "^0.2.2"
},
"packageManager": "yarn@3.5.0"
}