-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "websocker-server",
"version": "0.0.0-PLACEHOLDER",
"type": "commonjs",
"description": "",
"main": "index.js",
"scripts": {
"node:build": "tsc",
"node:prod": "node dist/index.js",
"node:dev": "tsc-watch --onCompilationStarted \"echo [TS-WATCH] Compilation started...\" --onSuccess \"sh -c 'echo [TS-WATCH] Compilation successful. Starting Node.js... && node dist/index.js'\" --onFailure \"echo [TS-WATCH] Compilation failed. Fix TypeScript errors.\" --onCompilationComplete \"echo [TS-WATCH] Compilation cycle finished.\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint-staged": "lint-staged",
"commit": "cz",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.39.3",
"@types/module-alias": "^2.0.4",
"@types/node": "^25.3.0",
"commitizen": "^4.3.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"module-alias": "^2.3.4",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"_moduleAliases": {
"@": "./dist"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:fix",
"npm run format:check"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}