-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
58 lines (58 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
54
55
56
57
58
{
"private": true,
"name": "@celljs/monorepo",
"version": "0.0.0",
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=18"
},
"resolutions": {
"**/@types/node": "18"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/chai-spies": "1.0.3",
"@types/chai-string": "^1.4.0",
"chai": "4.3.4",
"chai-spies": "1.0.0",
"chai-string": "^1.4.0",
"lerna": "^5.6.2",
"nx": "^14.4.3",
"typedoc": "^0.26.8",
"typedoc-plugin-external-module-map": "~1.3.2",
"typedoc-plugin-remove-references": "^0.0.6"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"prepare": "yarn run prepare:references && yarn run prepare:build",
"prepare:references": "node scripts/compile-references.js",
"prepare:build": "yarn build && yarn run lint",
"build": "tsc -b",
"watch": "tsc -b -w --preserveWatchOutput",
"clean": "yarn lint:clean && lerna run clean",
"build:clean": "lerna run prepare",
"lint": "lerna run lint",
"lint:clean": "rimraf .eslintcache",
"lint:oneshot": "node --max-old-space-size=4096 node_modules/eslint/bin/eslint.js --cache=true \"{dev-packages,packages,examples}/**/*.{ts,tsx}\"",
"docs": "rimraf gh-pages/docs/next && typedoc --tsconfig tsconfig.json --options configs/typedoc.json .",
"test": "yarn test:references && yarn test:cell",
"test:references": "node scripts/compile-references --dry-run",
"test:cell": "lerna run test --scope \"@celljs/!(example-)*\" --stream --concurrency=1",
"publish": "yarn && yarn test && yarn publish:latest",
"publish:latest": "lerna publish --exact --ignore-scripts --yes --no-push && yarn -s publish:check",
"publish:next": "lerna publish preminor --exact --ignore-scripts --canary --preid next --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes && yarn publish:check",
"publish:check": "node scripts/check-publish.js"
},
"workspaces": [
"dev-packages/*",
"packages/*",
"plugins/*",
"cloud-packages/*",
"ui-packages/*",
"ai-packages/*",
"examples/*"
],
"dependencies": {
"tslib": "^2.8.0"
}
}