-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "socketwise",
"version": "1.0.0",
"description": "🔌 A powerful framework for building real-time applications on top of Socket.IO using class-based approach with decorators.",
"author": "Can Çevik <[email protected]>",
"license": "MIT",
"keywords": [
"socket",
"socket-io",
"socket-server",
"socket-client"
],
"main": "dist/index.js",
"scripts": {
"release": "release-it",
"version": "auto-changelog -p && git add CHANGELOG.md",
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"build:dev": "tsc --watch",
"test": "jest --forceExit --detectOpenHandles --verbose",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"dependencies": {
"class-transformer": "^0.5.1",
"fast-glob": "^3.3.1",
"magnodi": "^1.1.4",
"path-to-regexp": "^6.2.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"release-it": "^16.1.4",
"socket.io-client": "^4.7.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canccevik/socketwise.git"
},
"bugs": {
"url": "https://github.com/canccevik/socketwise/issues"
},
"homepage": "https://github.com/canccevik/socketwise#readme",
"publishConfig": {
"access": "public"
}
}