forked from penrose/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"repository": "penrose/penrose",
"author": "Penrose Team (https://penrose.cs.cmu.edu/)",
"private": true,
"packages": [
"packages/*"
],
"scripts": {
"build": "yarn turbo run build",
"typecheck": "yarn turbo run typecheck",
"build:docs-site": "yarn turbo run build --filter=docs-site",
"start:docs-site": "yarn turbo run watch --filter=docs-site",
"start": "yarn turbo run watch --filter=editor",
"build:ide": "yarn turbo run build --filter=editor",
"test": "yarn turbo run test",
"docs": "yarn turbo run docs",
"lint": "yarn turbo run lint",
"lint:fix": "yarn turbo run lint -- --fix",
"turbo": "node turboConfig.js && turbo",
"lerna": "lerna",
"new-version": "lerna version --conventional-commits --create-release github -m \"chore(release): publish %s [ci skip]\"",
"new-version:prerelease": "lerna version --conventional-prerelease",
"graduate": "lerna version --conventional-commits --conventional-graduate",
"publish:canary": "lerna publish --canary --dist-tag develop --force-publish",
"release": "lerna publish from-package",
"format": "prettier . --write",
"format:check": "prettier . --check",
"toc": "markdown-toc --bullets='-' -i CONTRIBUTING.md",
"diff": "lerna diff"
},
"devDependencies": {
"cross-env": "^7.0.3",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"lerna": "^3.22.1",
"markdown-toc": "^1.2.0",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "^2.3.4",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"turbo": "^1.4.5",
"typescript": "^4.1.3"
},
"workspaces": {
"packages": [
"packages/automator",
"packages/components",
"packages/core",
"packages/docs-site",
"packages/editor",
"packages/examples",
"packages/roger",
"packages/synthesizer",
"packages/synthesizer-ui"
],
"nohoist": [
"**/@types/jest",
"**/babel-loader",
"**/webpack"
]
},
"version": "1.3.0"
}