mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-11 17:37:18 -04:00
# Introduction Dispatching root package.json devDeps, prod deps Taking care of keeping non imported module used at build/ci level in the root package.json ## Motivation Avoid redundant deps declaration, better scoping allow better workspace deps granularity installation. <img width="385" height="247" alt="image" src="https://github.com/user-attachments/assets/9d7162ec-ba01-4f58-8563-38333733fdf0" /> --------- Co-authored-by: Charles Bochet <charles@twenty.com>
15 lines
454 B
JSON
15 lines
454 B
JSON
{
|
|
"name": "twenty-utils",
|
|
"private": true,
|
|
"scripts": {
|
|
"nx": "NX_DEFAULT_PROJECT=twenty-front node ../../node_modules/nx/bin/nx.js",
|
|
"danger:ci": "danger ci --use-github-checks --failOnErrors",
|
|
"danger:congratulate": "danger ci --dangerfile ./congratulate-dangerfile.ts --use-github-checks --failOnErrors",
|
|
"release": "node release.js"
|
|
},
|
|
"devDependencies": {
|
|
"danger": "^13.0.4",
|
|
"danger-plugin-todos": "^1.3.1"
|
|
}
|
|
}
|