forked from penrose/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"repository": "penrose/penrose",
"author": "Penrose Team (https://penrose.cs.cmu.edu/)",
"private": true,
"packages": [
"packages/*"
],
"scripts": {
"build": "nx run-many --targets=build,bundle --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 --verbose",
"build:ide": "nx run editor:build",
"test": "nx run-many --target=test --verbose",
"coverage": "nx run core:coverage",
"registry": "nx run examples:test --output-style=stream-without-prefix",
"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",
"format:check": "prettier . --check",
"toc": "markdown-toc --bullets='-' -i CONTRIBUTING.md",
"diff": "lerna diff"
},
"devDependencies": {
"@spyke/conventional-changelog-preset": "^1.0.5",
"@vitest/coverage-c8": "^0.31.1",
"@vitest/ui": "^0.31.1",
"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.4.2",
"prettier": "3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.6",
"vitest": "^0.31.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/jest",
"**/babel-loader",
"**/webpack"
]
},
"dependencies": {
"file-saver": "^2.0.5",
"jszip": "^3.10.1"
}
}