forked from penrose/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.09 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
{
"repository": "penrose/penrose",
"author": "Penrose Team (https://penrose.ink)",
"private": true,
"packages": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream --concurrency 1",
"typecheck": "lerna run typecheck",
"clean": "lerna clean && lerna run clean --stream",
"prestart": "lerna run build --scope=@penrose/examples --scope=@penrose/core",
"start": "lerna run watch --stream --parallel --scope=@penrose/core --scope=@penrose/browser-ui",
"prestart:ide": "lerna run build --scope=@penrose/examples --scope=@penrose/core --scope=@penrose/components",
"start:ide": "lerna run watch --stream --scope=@penrose/editor",
"build:ide": "lerna run build --stream --scope=@penrose/core --scope=@penrose/editor --include-dependencies",
"build:docs-site": "lerna run build --stream --scope=@penrose/core --scope=@penrose/components --scope=@penrose/docs-site",
"start:docs-site": "lerna run watch --stream --parallel --scope=@penrose/components --scope=@penrose/docs-site",
"test": "lerna run test --stream",
"docs": "lerna run docs --stream",
"lint": "lerna run lint --stream",
"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",
"diff": "lerna diff"
},
"devDependencies": {
"cross-env": "^7.0.3",
"handlebars": "^4.7.7",
"lerna": "^3.22.1",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "^2.3.4",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/jest",
"**/babel-loader",
"**/webpack"
]
},
"version": "0.0.0"
}