-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.16 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "conejos-mensajeros",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"workspaces": [
"frontend",
"uploader",
"processor",
"libs/ddd"
],
"scripts": {
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"prettier:cli": "npm run prettier:cli --workspaces --if-present",
"prettier:check": "npm run prettier:check --workspaces --if-present",
"prettier:fix": "npm run prettier:fix --workspaces --if-present",
"eslint:fix": "npm run eslint:fix --workspaces --if-present",
"eslint": "npm run eslint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": " npm run test:coverage --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"rebuild": "npm run rebuild --workspaces --if-present",
"docker:build": "docker build -t conejos-mensajeros .",
"docker:run": "docker run -p 3000:3000 -d conejos-mensajeros",
"start": "npm run start --workspaces --if-present",
"start:clean": "npm run rebuild && npm run start",
"mdlint": "markdownlint \"**/*.md\" --ignore node_modules",
"mdlint:fix": "npm run mdlint --fix",
"commit": "cz",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.1",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"conventional-changelog-atom": "^3.0.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"markdownlint": "^0.29.0",
"markdownlint-cli": "^0.35.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"packageManager": "pnpm@8.6.6"
}