This repository has been archived by the owner on Mar 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
73 lines (73 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tldraw/monorepo",
"private": true,
"version": "1.6.2",
"description": "A tiny little drawing app.",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "https://github.com/tldraw/tldraw.git"
},
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:www": "turbo run build --filter=@tldraw/www",
"build:core": "turbo run build --filter=@tldraw/core-example*",
"build:packages": "turbo run build --filter=./packages/*",
"build:apps": "turbo run build --filter=./apps/**",
"start": "turbo run dev --filter=@tldraw/tldraw-example... --parallel",
"start:core": "turbo run dev --filter=@tldraw/core-example-advanced*... --parallel",
"start:www": "turbo run dev --filter=@tldraw/www... --parallel",
"start:vscode": "code apps/vscode/extension & turbo run dev --filter=./apps/vscode/*... --parallel",
"start:extension": "turbo run dev --filter=@tldraw/new-tab-extension... --parallel",
"package:vscode": "turbo run package --filter=tldraw-vscode",
"publish:vscode": "turbo run publish --filter=tldraw-vscode",
"serve:www": "turbo run start --filter=@tldraw/www",
"version": "changeset version",
"changeset": "changeset",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"test:watch": "turbo run test:watch",
"format": "prettier --write .",
"lint": "turbo run lint --parallel",
"clean": "turbo run clean",
"postinstall": "husky install",
"pre-commit": "lint-staged",
"pre-push": "yarn test"
},
"devDependencies": {
"@ggallon/prettier-plugin-sort-imports": "^3.4.2-canary.0",
"@swc-node/jest": "^1.4.3",
"@tldraw/lfg": "latest",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@types/vscode": "^1.63.2",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.8.2",
"fake-indexeddb": "^3.1.7",
"husky": "^7.0.4",
"init-package-json": "^2.0.5",
"jest": "^27.4.7",
"lint-staged": "^12.3.3",
"prettier": "^2.7.1",
"resize-observer-polyfill": "^1.5.1",
"source-map-loader": "^3.0.1",
"tslib": "^2.4.0",
"turbo": "^1.3.4",
"typescript": "^4.7.3",
"webpack": "^5.68.0",
"@changesets/cli": "^2.20.0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --fix"
},
"packageManager": "[email protected]"
}