AFFiNE/package.json

69 lines
2.3 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",
"scripts": {
2023-02-17 05:43:52 +03:00
"dev": "pnpm --filter @affine/app dev",
"dev:ac": "cross-env NODE_API_SERVER=ac pnpm --filter @affine/app dev",
"dev:local": "cross-env NODE_API_SERVER=local pnpm --filter @affine/app dev",
"build": "pnpm --filter @affine/app build",
"build:client": " pnpm --filter=@affine/client-app build:app",
2023-02-09 07:33:56 +03:00
"build:storybook": " pnpm -r build-storybook",
"export": "pnpm --filter @affine/app export",
"start": "pnpm --filter @affine/app start",
2023-02-17 10:33:32 +03:00
"lint": "eslint . --ext .js,.ts,.mts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.mts,.tsx --fix",
"test": "playwright test",
2023-02-05 14:05:43 +03:00
"test:coverage": "cross-env COVERAGE=true pnpm test -- --forbid-only",
2023-02-17 05:43:52 +03:00
"test:unit": "vitest --run",
"test:unit:coverage": "vitest run --coverage",
"postinstall": "husky install",
2022-12-30 20:59:07 +03:00
"notify": "node --experimental-modules scripts/notify.mjs",
2023-02-18 12:28:40 +03:00
"update:core": "pnpm up @blocksuite/*@nightly !@blocksuite/icons -r"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "npx eslint --cache --fix"
},
"devDependencies": {
2023-01-04 13:03:57 +03:00
"@changesets/cli": "^2.26.0",
2023-02-19 11:40:39 +03:00
"@playwright/test": "^1.30.0",
"@testing-library/react": "^14.0.0",
2023-02-19 11:40:39 +03:00
"@types/eslint": "^8.21.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
2023-02-17 05:43:52 +03:00
"@vitest/coverage-istanbul": "^0.28.5",
2023-01-04 13:03:57 +03:00
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
2023-02-17 10:33:32 +03:00
"eslint": "^8.34.0",
2023-02-19 11:40:39 +03:00
"eslint-config-prettier": "^8.6.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",
2022-12-17 19:59:53 +03:00
"got": "^12.5.3",
2023-02-19 11:40:39 +03:00
"happy-dom": "^8.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
2023-02-05 13:41:18 +03:00
"nyc": "^15.1.0",
2023-02-19 11:40:39 +03:00
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-02-17 05:43:52 +03:00
"typescript": "^4.9.5",
"vite": "^4.1.2",
2023-02-17 05:43:52 +03:00
"vitest": "^0.28.5"
},
"pnpm": {
"patchedDependencies": {
"@tauri-apps/api@1.2.0": "patches/@tauri-apps__api@1.2.0.patch",
2023-02-19 11:40:39 +03:00
"next@13.1.6": "patches/next@13.1.0.patch"
}
2022-09-22 10:39:53 +03:00
}
}