-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.95 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
64
65
66
{
"name": "ot-builder-monorepo",
"private": true,
"license": "MIT",
"version": "0.0.0",
"repository": {
"url": "https://github.com/ot-builder/monorepo",
"type": "git"
},
"workspaces": [
"packages/*",
"doc"
],
"scripts": {
"init": "npm run update:package.json && npm run bootstrap && npm run update:tsconfig.json",
"init:prod": "npm run update:package.json && npm run bootstrap:prod && npm run update:tsconfig.json",
"clean": "rimraf .cache .doc-deploy && npm run --workspaces clean",
"build": "tsc --build packages/tsconfig.json",
"build:prod": "tsc --build packages/tsconfig.prod.json",
"rebuild": "npm run clean && npm run init && npm run build",
"rebuild:prod": "npm run clean && npm run init:prod && npm run build:prod",
"watch": "tsc --build --watch packages/tsconfig.json",
"update:tsconfig.json": "node scripts/update-package-tsconfig.mjs",
"update:package.json": "node scripts/update-package-json.mjs",
"update:hide-package.json-dev-deps": "node scripts/hide-package-json-dev-deps.mjs hide",
"update:show-package.json-dev-deps": "node scripts/hide-package-json-dev-deps.mjs show",
"create-package": "node scripts/create-package.mjs",
"test": "jest",
"change": "beachball change",
"beachball:check": "beachball check",
"beachball:publish": "beachball publish --access public",
"docs:clean": "npm -w=doc run clean",
"docs:dev": "npm -w=doc run dev",
"docs:build": "npm -w=doc run build",
"docs:deploy": "node scripts/deploy-documents.mjs",
"publish": "node scripts/auto-publish.mjs",
"bootstrap": "npm install",
"bootstrap:prod": "npm run update:hide-package.json-dev-deps && npm install && npm run update:show-package.json-dev-deps",
"lint": "eslint . --ext .ts,.tsx",
"lint:eslint-fix": "eslint . --ext .ts,.tsx --fix",
"build-syntaxes": "npm run build-syntaxes:unicode-ranges",
"build-syntaxes:unicode-ranges": "tspeg --num-enums --enable-memo packages/cli/src/sub-parsers/unicode-ranges/ranges.peg packages/cli/src/sub-parsers/unicode-ranges/generated.ts"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.8",
"@types/rimraf": "^4.0.5",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"beachball": "^2.43.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"rimraf": "^5.0.7",
"tspeg": "^3.3.1",
"typescript": "^5.5.2",
"which": "^4.0.0"
}
}