generated from cjinhuo/mono-sdk-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.91 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
67
{
"name": "mono",
"version": "0.0.1",
"private": true,
"description": "the best monorepo",
"scripts": {
"commit": "git add . && git cz",
"esm": "pnpm --parallel esm",
"build": "pnpm --parallel build",
"test": "pnpm --parallel test",
"web:dev": "pnpm --filter online-demo dev",
"text-search-engine:build": "pnpm --filter text-search-engine build",
"clean": "shx rm -rf packages/**/*.tsbuildinfo && shx rm -rf ./{packages,app}/*/{esm,dist}",
"clean:node_module": "rm -rf ./node_modules && rm -rf ./{packages,app,e2e}/**/node_modules",
"postinstall": "husky install",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": ">=18.18.0",
"pnpm": ">=8"
},
"workspaces": ["packages/*", "utils/*", "app/*", "components/*"],
"author": "cjinhuo",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.7",
"@commitlint/config-conventional": "^19.2.2",
"@mono/tsconfig": "workspace:^",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"clipanion": "4.0.0-rc.3",
"consola": "^3.2.3",
"cz-git": "^1.9.4",
"debug": "^4.3.6",
"fast-glob": "^3.3.2",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"npm-run-all": "^4.1.5",
"nx": "^19.5.7",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-sizes": "^1.0.6",
"rollup-plugin-visualizer": "^5.12.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}