AFFiNE/package.json

82 lines
2.7 KiB
JSON
Raw Normal View History

2022-09-22 10:39:53 +03:00
{
"name": "AFFiNE",
"version": "0.3.0",
"private": true,
"author": "toeverything",
"license": "MPL-2.0",
2023-03-20 10:05:02 +03:00
"workspaces": [
"apps/!(electron)",
2023-03-24 00:29:29 +03:00
"packages/*",
"tests/fixtures"
2023-03-20 10:05:02 +03:00
],
"scripts": {
2023-03-22 01:39:13 +03:00
"dev": "dev-web",
2023-03-25 06:25:27 +03:00
"dev:ac": "NODE_API_SERVER=ac yarn workspace @affine/web dev",
"dev:local": "NODE_API_SERVER=local yarn workspace @affine/web dev",
2023-03-20 10:05:02 +03:00
"dev:app": "yarn workspace @affine/electron dev:app",
2023-03-25 06:25:27 +03:00
"build": "yarn workspace @affine/web build",
2023-03-20 10:05:02 +03:00
"build:client": "yarn workspace @affine/client-app build:app",
"build:storybook": "yarn workspace @affine/component build-storybook",
"bump:nightly": "./scripts/bump-blocksuite.sh",
2023-03-25 06:25:27 +03:00
"export": "yarn workspace @affine/web export",
"start": "yarn workspace @affine/web start",
"start:storybook": "yarn exec serve packages/component/storybook-static -l 6006",
"start:e2e": "yar dlx run-p start start:storybook",
"lint": "eslint . --ext .js,mjs,.ts,.tsx",
2023-03-20 10:05:02 +03:00
"lint:fix": "yarn lint --fix",
"test": "playwright test",
2023-03-20 10:05:02 +03:00
"test:coverage": "COVERAGE=true yarn test --forbid-only",
2023-02-17 05:43:52 +03:00
"test:unit": "vitest --run",
"test:unit:ui": "vitest --ui",
2023-02-17 05:43:52 +03:00
"test:unit:coverage": "vitest run --coverage",
"postinstall": "husky install",
2023-03-20 10:05:02 +03:00
"notify": "node scripts/notify.mjs"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
2023-03-22 07:59:01 +03:00
"*.{ts,tsx,mjs,js,jsx}": "eslint --cache --fix"
},
"devDependencies": {
2023-03-22 01:39:13 +03:00
"@affine/cli": "workspace:*",
"@istanbuljs/schema": "^0.1.3",
2023-03-17 05:07:57 +03:00
"@perfsee/sdk": "^1.5.1",
"@playwright/test": "^1.32.1",
"@testing-library/react": "^14.0.0",
2023-03-20 08:07:54 +03:00
"@types/eslint": "^8.21.3",
2023-03-22 09:59:16 +03:00
"@types/node": "^18.15.5",
2023-03-17 05:07:57 +03:00
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
2023-03-20 10:05:02 +03:00
"@vitest/coverage-istanbul": "^0.29.3",
2023-03-17 05:07:57 +03:00
"@vitest/ui": "^0.29.3",
"eslint": "^8.36.0",
2023-03-22 09:59:16 +03:00
"eslint-config-prettier": "^8.8.0",
2023-02-17 10:33:32 +03:00
"eslint-plugin-import": "^2.27.5",
2022-11-10 15:51:06 +03:00
"eslint-plugin-prettier": "^4.2.1",
2023-02-17 10:33:32 +03:00
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
2023-01-08 19:48:54 +03:00
"fake-indexeddb": "4.0.1",
2023-03-17 05:07:57 +03:00
"got": "^12.6.0",
2023-03-02 23:52:41 +03:00
"happy-dom": "^8.9.0",
2023-02-19 11:40:39 +03:00
"husky": "^8.0.3",
2023-03-17 05:07:57 +03:00
"lint-staged": "^13.2.0",
"msw": "^1.2.0",
2023-03-21 05:58:23 +03:00
"nanoid": "^4.0.1",
2023-02-05 13:41:18 +03:00
"nyc": "^15.1.0",
2023-03-20 10:05:02 +03:00
"prettier": "^2.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-03-25 06:25:27 +03:00
"serve": "^14.2.0",
2023-03-17 05:07:57 +03:00
"typescript": "^5.0.2",
"vite": "^4.2.0",
2023-03-25 06:25:27 +03:00
"vite-plugin-istanbul": "^4.0.1",
2023-03-20 10:05:02 +03:00
"vitest": "^0.29.3",
"vitest-fetch-mock": "^0.2.2"
},
"packageManager": "yarn@3.5.0",
"resolutions": {
"y-indexeddb@^9.0.9": "patch:y-indexeddb@npm%3A9.0.9#./.yarn/patches/y-indexeddb-npm-9.0.9-6bd9b26461.patch"
}
}