2021-05-09 12:03:39 +00:00
|
|
|
{
|
2021-11-18 14:05:44 +00:00
|
|
|
"name": "@tldraw/monorepo",
|
2021-08-10 16:12:55 +00:00
|
|
|
"private": true,
|
2022-02-25 12:18:59 +00:00
|
|
|
"version": "1.6.2",
|
2021-08-10 16:12:55 +00:00
|
|
|
"description": "A tiny little drawing app.",
|
2021-11-02 11:46:25 +00:00
|
|
|
"author": "@steveruizok",
|
2021-08-10 16:12:55 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-16 16:01:29 +00:00
|
|
|
"url": "https://github.com/tldraw/tldraw.git"
|
2021-06-21 21:35:28 +00:00
|
|
|
},
|
2021-08-10 16:12:55 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"workspaces": [
|
2022-02-08 11:05:56 +00:00
|
|
|
"packages/*",
|
|
|
|
"apps/*",
|
2022-03-17 12:42:18 +00:00
|
|
|
"apps/vscode/*",
|
2022-02-08 11:05:56 +00:00
|
|
|
"examples/*"
|
2021-08-10 16:12:55 +00:00
|
|
|
],
|
2021-08-10 17:19:30 +00:00
|
|
|
"scripts": {
|
2022-02-08 11:05:56 +00:00
|
|
|
"build": "turbo run build",
|
2022-07-08 20:25:08 +00:00
|
|
|
"build:www": "turbo run build:www --force",
|
2022-02-08 11:05:56 +00:00
|
|
|
"build:core": "turbo run build:core",
|
|
|
|
"build:packages": "turbo run build:packages --stream",
|
|
|
|
"build:apps": "turbo run build:apps",
|
|
|
|
"start": "turbo run start --stream --parallel",
|
|
|
|
"start:all": "turbo run start:all --stream --parallel",
|
|
|
|
"start:core": "turbo run start:core --stream --parallel",
|
|
|
|
"start:www": "turbo run start --parallel & cd apps/www && yarn dev",
|
|
|
|
"start:electron": "turbo run start:electron --stream --parallel",
|
|
|
|
"start:vscode": "code apps/vscode/extension & turbo run start:vscode --parallel; ",
|
2022-02-08 11:45:11 +00:00
|
|
|
"version": "yarn changeset version",
|
|
|
|
"changeset": "changeset",
|
2022-02-08 11:05:56 +00:00
|
|
|
"turbo": "turbo",
|
|
|
|
"test": "turbo run test --stream",
|
|
|
|
"test:ci": "turbo run test:ci --stream",
|
|
|
|
"test:watch": "turbo run test:watch --stream",
|
2021-11-28 10:05:40 +00:00
|
|
|
"postinstall": "husky install",
|
2022-07-28 07:19:53 +00:00
|
|
|
"clean": "turbo run clean",
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"pre-push": "yarn test"
|
2021-08-10 17:19:30 +00:00
|
|
|
},
|
2021-08-10 16:12:55 +00:00
|
|
|
"devDependencies": {
|
2022-02-03 11:16:40 +00:00
|
|
|
"@swc-node/jest": "^1.4.3",
|
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
|
|
"@testing-library/react": "^12.1.2",
|
2022-07-28 07:25:46 +00:00
|
|
|
"@tldraw/lfg": "latest",
|
2022-02-03 11:16:40 +00:00
|
|
|
"@types/jest": "^27.4.0",
|
|
|
|
"@types/node": "^17.0.14",
|
|
|
|
"@types/vscode": "^1.63.2",
|
2022-07-28 07:25:46 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
|
|
|
"@typescript-eslint/parser": "^5.17.0",
|
2022-02-03 11:16:40 +00:00
|
|
|
"eslint": "^8.8.0",
|
2022-07-28 07:25:46 +00:00
|
|
|
"eslint-plugin-jest": "^26.6.0",
|
2022-02-03 11:16:40 +00:00
|
|
|
"fake-indexeddb": "^3.1.7",
|
2021-11-06 11:16:30 +00:00
|
|
|
"husky": "^7.0.4",
|
2022-02-03 11:16:40 +00:00
|
|
|
"init-package-json": "^2.0.5",
|
|
|
|
"jest": "^27.4.7",
|
|
|
|
"lint-staged": "^12.3.3",
|
2022-02-08 11:05:56 +00:00
|
|
|
"mobx": "^6.3.8",
|
2022-02-03 11:16:40 +00:00
|
|
|
"prettier": "^2.5.1",
|
2021-09-08 16:18:43 +00:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2022-01-25 09:57:24 +00:00
|
|
|
"source-map-loader": "^3.0.1",
|
2022-06-09 14:33:35 +00:00
|
|
|
"tslib": "^2.4.0",
|
2022-02-08 11:05:56 +00:00
|
|
|
"turbo": "^1.1.2",
|
2022-06-09 14:33:35 +00:00
|
|
|
"typescript": "^4.7.3",
|
2022-02-08 11:05:56 +00:00
|
|
|
"webpack": "^5.68.0"
|
2021-05-09 12:03:39 +00:00
|
|
|
},
|
2022-07-28 07:19:53 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*": "prettier --ignore-unknown --write",
|
|
|
|
"*.{ts,tsx}": "eslint --fix"
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
2022-02-08 11:45:11 +00:00
|
|
|
"packageManager": "yarn@1.22.17",
|
|
|
|
"dependencies": {
|
|
|
|
"@changesets/cli": "^2.20.0"
|
|
|
|
}
|
2022-07-28 07:19:53 +00:00
|
|
|
}
|