-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
91 lines (91 loc) · 2.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "inversify-socket-utils",
"version": "1.0.1136",
"description": "Some utilities for the development of socket.io applications with Inversify",
"keywords": [
"inversify",
"socket.io"
],
"homepage": "https://github.com/alxshelepenok/inversify-socket-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/alxshelepenok/inversify-socket-utils.git"
},
"license": "MIT",
"author": "Alexander Shelepenok <[email protected]>",
"main": "target/inversify-socket-utils.umd.js",
"module": "target/inversify-socket-utils.es5.js",
"typings": "target/types/src/index.d.ts",
"files": [
"target"
],
"scripts": {
"build": "npm run clean && tsc && rollup -c internal/rollup/rollup-config.ts",
"clean": "rimraf target",
"format": "npm run format:ts",
"format:ts": "eslint . --ext .ts --fix && prettier --write .",
"lint": "npm run lint:ts",
"lint:commit": "commitlint",
"lint:staged": "lint-staged",
"lint:ts": "eslint . --ext .ts && prettier --check .",
"prepare": "husky install",
"semantic-release": "semantic-release",
"start": "ts-node -r tsconfig-paths/register examples/basic/server.ts",
"test": "jest --runInBand --passWithNoTests --config internal/testing/jest-config.ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"npm run format:ts"
]
},
"overrides": {
"engine.io": "6.5.5"
},
"dependencies": {
"inversify": "6.0.2",
"reflect-metadata": "0.2.2",
"socket.io": "4.7.5"
},
"devDependencies": {
"@alxshelepenok/eslint-config": "^1.0.506",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.4.14",
"rimraf": "5.0.10",
"rollup": "^2.79.1",
"semantic-release": "^22.0.12",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
}
}