forked from penrose/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"repository": "penrose/penrose",
"author": "Penrose Team (https://penrose.cs.cmu.edu/)",
"private": true,
"packages": [
"packages/*"
],
"scripts": {
"build": "nx run-many --target=build --verbose",
"typecheck": "nx run-many --target=typecheck --verbose",
"build:roger": "nx run roger:build",
"build:docs-site": "nx run docs-site:build",
"start:docs-site": "nx run docs-site:dev",
"start": "nx run editor:watch",
"build:ide": "nx run editor:build",
"test": "nx run core:test",
"docs": "nx run core:docs",
"lint": "nx run core:lint",
"lint:fix": "nx run core:lint --fix",
"lerna": "lerna",
"new-version": "lerna version --conventional-commits --no-git-tag-version --no-push",
"format": "prettier . --write && nx run-many --target=format --verbose",
"format:check": "prettier . --check && nx run-many --target=format:check --verbose",
"toc": "markdown-toc --bullets='-' -i CONTRIBUTING.md",
"diff": "lerna diff"
},
"devDependencies": {
"@spyke/conventional-changelog-preset": "^1.0.5",
"cross-env": "^7.0.3",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"lerna": "^3.22.1",
"markdown-toc": "^1.2.0",
"nx": "^15.0.13",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "^3.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^5.0.4"
},
"workspaces": {
"packages": [
"packages/components",
"packages/core",
"packages/docs-site",
"packages/edgeworth",
"packages/editor",
"packages/examples",
"packages/optimizer",
"packages/roger",
"packages/vscode"
],
"nohoist": [
"**/@types/jest",
"**/babel-loader",
"**/webpack"
]
}
}