2022-09-22 10:39:53 +03:00
|
|
|
{
|
2022-12-30 16:40:15 +03:00
|
|
|
"name": "AFFiNE",
|
2023-05-26 10:49:05 +03:00
|
|
|
"version": "0.7.0-canary.0",
|
2022-10-14 14:29:36 +03:00
|
|
|
"private": true,
|
2022-12-30 16:40:15 +03:00
|
|
|
"author": "toeverything",
|
|
|
|
"license": "MPL-2.0",
|
2023-03-20 10:05:02 +03:00
|
|
|
"workspaces": [
|
2023-04-18 06:24:44 +03:00
|
|
|
"apps/*",
|
2023-03-24 00:29:29 +03:00
|
|
|
"packages/*",
|
2023-04-25 06:12:48 +03:00
|
|
|
"tests/fixtures",
|
|
|
|
"tests/kit"
|
2023-03-20 10:05:02 +03:00
|
|
|
],
|
2022-10-14 14:29:36 +03:00
|
|
|
"scripts": {
|
2023-03-22 01:39:13 +03:00
|
|
|
"dev": "dev-web",
|
2023-04-12 08:26:42 +03:00
|
|
|
"dev:ac": "API_SERVER_PROFILE=ac yarn workspace @affine/web dev",
|
2023-05-22 15:18:43 +03:00
|
|
|
"dev:local": "PORT=8080 API_SERVER_PROFILE=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",
|
2023-03-21 11:24:32 +03:00
|
|
|
"bump:nightly": "./scripts/bump-blocksuite.sh",
|
2023-05-22 07:53:55 +03:00
|
|
|
"circular": "madge --circular --ts-config ./tsconfig.json ./apps/web/src/pages/**/*.tsx",
|
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",
|
2023-05-09 09:09:39 +03:00
|
|
|
"serve:test-static": "yarn exec serve tests/fixtures --cors -p 8081",
|
2023-03-25 06:25:27 +03:00
|
|
|
"start:e2e": "yar dlx run-p start start:storybook",
|
2023-04-13 23:30:18 +03:00
|
|
|
"lint": "eslint . --ext .js,mjs,.ts,.tsx --cache",
|
2023-03-20 10:05:02 +03:00
|
|
|
"lint:fix": "yarn lint --fix",
|
2022-12-30 16:40:15 +03:00
|
|
|
"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",
|
2023-03-05 05:11:15 +03:00
|
|
|
"test:unit:ui": "vitest --ui",
|
2023-02-17 05:43:52 +03:00
|
|
|
"test:unit:coverage": "vitest run --coverage",
|
2023-05-04 08:35:09 +03:00
|
|
|
"postinstall": "i18n-codegen gen && husky install",
|
2023-03-20 10:05:02 +03:00
|
|
|
"notify": "node scripts/notify.mjs"
|
2022-10-14 14:29:36 +03:00
|
|
|
},
|
2022-12-30 16:40:15 +03:00
|
|
|
"lint-staged": {
|
2023-04-13 23:30:18 +03:00
|
|
|
"*": "prettier --write --ignore-unknown --cache",
|
2023-05-10 12:16:48 +03:00
|
|
|
"*.{ts,tsx,mjs,js,jsx}": "eslint --cache --fix",
|
|
|
|
"*.toml": [
|
|
|
|
"taplo format"
|
|
|
|
]
|
2022-12-30 16:40:15 +03:00
|
|
|
},
|
2022-10-14 14:29:36 +03:00
|
|
|
"devDependencies": {
|
2023-04-25 06:12:48 +03:00
|
|
|
"@affine-test/kit": "workspace:*",
|
2023-03-22 01:39:13 +03:00
|
|
|
"@affine/cli": "workspace:*",
|
2023-05-05 02:49:08 +03:00
|
|
|
"@commitlint/cli": "^17.6.3",
|
|
|
|
"@commitlint/config-conventional": "^17.6.3",
|
2023-05-18 01:02:55 +03:00
|
|
|
"@faker-js/faker": "^8.0.1",
|
2023-03-25 09:39:57 +03:00
|
|
|
"@istanbuljs/schema": "^0.1.3",
|
2023-05-04 08:35:09 +03:00
|
|
|
"@magic-works/i18n-codegen": "^0.5.0",
|
2023-04-23 09:42:27 +03:00
|
|
|
"@perfsee/sdk": "^1.6.0",
|
2023-04-28 01:59:54 +03:00
|
|
|
"@playwright/test": "^1.33.0",
|
2023-05-10 12:16:48 +03:00
|
|
|
"@taplo/cli": "^0.5.2",
|
2023-02-18 11:41:22 +03:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-05-26 10:47:45 +03:00
|
|
|
"@types/eslint": "^8.40.0",
|
2023-05-27 11:08:07 +03:00
|
|
|
"@types/node": "^18.16.16",
|
2023-05-26 10:47:45 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
|
|
"@typescript-eslint/parser": "^5.59.7",
|
|
|
|
"@vanilla-extract/vite-plugin": "^3.8.2",
|
2023-04-23 09:42:27 +03:00
|
|
|
"@vitejs/plugin-react": "^4.0.0",
|
2023-05-18 01:02:55 +03:00
|
|
|
"@vitest/coverage-istanbul": "^0.31.1",
|
|
|
|
"@vitest/ui": "^0.31.1",
|
2023-05-26 10:47:45 +03:00
|
|
|
"eslint": "^8.41.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",
|
2023-04-14 08:24:44 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-02-17 10:33:32 +03:00
|
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
2023-05-09 01:37:07 +03:00
|
|
|
"eslint-plugin-unicorn": "^47.0.0",
|
2023-02-17 10:33:32 +03:00
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2023-01-08 19:48:54 +03:00
|
|
|
"fake-indexeddb": "4.0.1",
|
2023-05-27 11:08:07 +03:00
|
|
|
"got": "^12.6.1",
|
2023-05-26 10:47:45 +03:00
|
|
|
"happy-dom": "^9.20.3",
|
2023-02-19 11:40:39 +03:00
|
|
|
"husky": "^8.0.3",
|
2023-04-28 01:59:54 +03:00
|
|
|
"lint-staged": "^13.2.2",
|
2023-05-22 07:53:55 +03:00
|
|
|
"madge": "^6.0.0",
|
2023-03-29 21:35:42 +03:00
|
|
|
"msw": "^1.2.1",
|
|
|
|
"nanoid": "^4.0.2",
|
2023-02-05 13:41:18 +03:00
|
|
|
"nyc": "^15.1.0",
|
2023-04-25 03:46:46 +03:00
|
|
|
"prettier": "^2.8.8",
|
2023-05-12 21:47:14 +03:00
|
|
|
"react": "18.3.0-canary-16d053d59-20230506",
|
|
|
|
"react-dom": "18.3.0-canary-16d053d59-20230506",
|
2023-03-25 06:25:27 +03:00
|
|
|
"serve": "^14.2.0",
|
2023-04-11 01:41:07 +03:00
|
|
|
"typescript": "^5.0.4",
|
2023-05-27 11:08:07 +03:00
|
|
|
"vite": "^4.3.9",
|
2023-03-25 06:25:27 +03:00
|
|
|
"vite-plugin-istanbul": "^4.0.1",
|
2023-04-14 00:22:49 +03:00
|
|
|
"vite-tsconfig-paths": "^4.2.0",
|
2023-05-18 01:02:55 +03:00
|
|
|
"vitest": "^0.31.1",
|
2023-04-18 08:07:03 +03:00
|
|
|
"vitest-fetch-mock": "^0.2.2",
|
|
|
|
"vitest-mock-extended": "^1.1.3"
|
2022-12-30 16:40:15 +03:00
|
|
|
},
|
2023-04-11 01:41:07 +03:00
|
|
|
"resolutions": {
|
|
|
|
"lit": "^2.7.2",
|
|
|
|
"idb": "^7.1.1",
|
|
|
|
"@emotion/cache": "^11.10.7"
|
|
|
|
},
|
2023-04-20 11:34:00 +03:00
|
|
|
"packageManager": "yarn@3.5.0",
|
|
|
|
"stableVersion": "0.5.4"
|
2022-10-14 14:29:36 +03:00
|
|
|
}
|