forked from microsoft/just
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "just-repo",
"version": "1.0.1",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"build": "lage build",
"postbuild": "node ./scripts/copyReadme.js",
"docs": "vuepress dev docs --host localhost",
"docs:build": "vuepress build docs",
"gh-pages": "gh-pages",
"change": "beachball change",
"checkchange": "beachball check",
"prettier:all": "yarn prettier --write '**/*'",
"release": "beachball publish",
"release:docs": "yarn docs:build && yarn gh-pages -d docs/.vuepress/dist --dotfiles",
"start": "lage start",
"test": "lage test",
"prelint": "syncpack list-mismatches",
"lint": "eslint packages --ext .ts,.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"beachball": "^2.12.1",
"eslint": "^7.18.0",
"gh-pages": "^3.1.0",
"lage": "^1.1.4",
"prettier": "^2.2.1",
"syncpack": "^5.6.10",
"vuepress": "^1.8.2",
"vuepress-plugin-mermaidjs": "^1.8.1"
},
"resolutions": {
"kind-of": "^6.0.3"
},
"syncpack": {
"prod": true,
"dev": true,
"peer": false
},
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
}
}