AFFiNE/package.json

103 lines
3.5 KiB
JSON
Raw Normal View History

2022-09-22 10:39:53 +03:00
{
"name": "AFFiNE",
2023-05-30 10:17:35 +03:00
"version": "0.7.0-canary.2",
"private": true,
"author": "toeverything",
"license": "MPL-2.0",
2023-03-20 10:05:02 +03:00
"workspaces": [
"apps/*",
2023-03-24 00:29:29 +03:00
"packages/*",
"tests/fixtures",
"tests/kit"
2023-03-20 10:05:02 +03:00
],
"scripts": {
2023-03-22 01:39:13 +03:00
"dev": "dev-web",
"dev:ac": "API_SERVER_PROFILE=ac yarn workspace @affine/web dev",
"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",
"bump:nightly": "./scripts/bump-blocksuite.sh",
"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",
"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",
"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": "i18n-codegen gen && husky install",
2023-03-20 10:05:02 +03:00
"notify": "node scripts/notify.mjs"
},
"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"
]
},
"devDependencies": {
"@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",
"@istanbuljs/schema": "^0.1.3",
"@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",
"@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",
"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",
"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",
"vite-tsconfig-paths": "^4.2.0",
2023-05-18 01:02:55 +03:00
"vitest": "^0.31.1",
"vitest-fetch-mock": "^0.2.2",
"vitest-mock-extended": "^1.1.3"
},
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"
}