-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "ts-dev-tools",
"description": "Opinionated and advisable packages to configure tools to develop a Typescript project",
"main": "index.js",
"repository": "[email protected]:escemi-tech/ts-dev-tools.git",
"author": "ESCEMI <[email protected]>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run --stream start --",
"lint": "lerna run --stream lint --",
"build": "lerna run --stream build --scope @ts-dev-tools/core && lerna run --stream build --ignore @ts-dev-tools/core",
"test": "lerna run --stream test --",
"test:ci": "lerna run --stream test:coverage --",
"link": "lerna exec yarn link",
"unlink": "lerna exec yarn unlink"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-nx-scopes": "^19.5.0",
"lerna": "^8.1.8",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-nx-scopes"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}