-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "core-monorepo",
"description": "Core objects for business apps monorepo",
"author": "Quatrain Développement SAS <[email protected]>",
"license": "MIT",
"version": "1.1.11",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.3",
"@types/node": "^22.10.1",
"folder-hash": "^4.1.0",
"jest": "^27.4.7",
"jest-node-exports-resolver": "^1.1.6",
"trace-unhandled": "^2.0.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"test": "tsc && jest --verbose",
"build": "yarn workspaces foreach -A run build",
"push": "yarn version patch && yarn npm publish --access public",
"bump": "yarn version ${0} && yarn bump:workspaces",
"bump:workspaces": "yarn workspaces foreach -A run bump-to $npm_package_version",
"publish": "yarn workspaces foreach -A run publish"
},
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}