logseq/tldraw/package.json

63 lines
1.9 KiB
JSON
Raw Normal View History

2022-05-16 11:55:07 +00:00
{
"name": "@tldraw/monorepo",
"private": true,
"version": "2.0.0-alpha.1",
"description": "A tiny little drawing app.",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "https://github.com/tldraw/tldraw.git"
},
"license": "MIT",
"workspaces": [
"packages/core",
"packages/react",
"packages/utils/*",
"apps/*",
"demo"
],
"scripts": {
"build": "lerna run build --stream",
"build:shapes": "lerna run build:shapes --stream",
"build:tools": "lerna run build:tools --stream",
"build:packages": "lerna run build:packages --stream",
"start:shapes": "lerna run start:shapes --stream",
"start:tools": "lerna run start:tools --stream",
"start": "lerna run start --stream --parallel",
2022-05-21 04:02:26 +00:00
"start:packages": "lerna run start:packages --parallel",
2022-05-16 11:55:07 +00:00
"fix:style": "yarn run pretty-quick",
"lerna": "lerna",
"test": "lerna run test --stream",
"test:ci": "lerna run test:ci --stream",
"test:watch": "lerna run test:watch --stream",
"docs": "lerna run typedoc",
"docs:watch": "lerna run typedoc --watch",
2022-05-22 05:51:35 +00:00
"postinstall": "yarn build:packages",
2022-05-16 11:55:07 +00:00
"pretty-quick": "pretty-quick"
},
"devDependencies": {
"@swc-node/jest": "^1.3.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^15.0.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.32.0",
"fake-indexeddb": "^3.1.3",
"init-package-json": "^2.0.4",
"jest": "^27.3.1",
"lerna": "^3.22.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"prettier-plugin-jsdoc": "^0.3.30",
"pretty-quick": "^3.1.2",
"resize-observer-polyfill": "^1.5.1",
"tslib": "^2.3.0",
"typedoc": "^0.22.3",
"typescript": "^4.5.2"
}
}