-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "@aklesky/node-workspace",
"version": "0.5.0",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"prettier": "./packages/prettier-config/dist/index.js",
"scripts": {
"prepare": "husky",
"build": "nx run-many --target=build"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.5.0",
"@commitlint/prompt-cli": "19.6.0",
"@nx/js": "20.1.4",
"@swc-node/register": "1.10.9",
"@swc/core": "1.9.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"commitizen": "4.3.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"nx": "20.1.4",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}