-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.15 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.15 KB
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": "stackcode-monorepo",
"version": "2.0.1",
"private": true,
"type": "module",
"description": "An intelligent tool to help junior developers apply best practices from day one.",
"scripts": {
"test": "npm test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"build": "tsc --build && cpx \"packages/i18n/src/locales/**/*.json\" \"packages/i18n/dist/locales\" && cpx \"packages/core/src/templates/**\" \"packages/core/dist/templates\" && echo '\\n--- Conteúdo de dist/templates após a cópia: ---' && ls -R packages/core/dist/templates && chmod +x packages/cli/dist/index.js",
"lint": "eslint .",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"author": "Yago Borba",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"cpx": "^1.5.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.39.0"
}
}