-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.12 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.12 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
76
77
78
79
80
{
"name": "real-time-trade-api",
"main": "src/index.js",
"type": "module",
"license": "MIT",
"author": {
"name": "remidosol",
"url": "https://github.com/remidosol"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "node src/index.js",
"start:dev": "nodemon",
"docs:generate": "asyncapi generate fromTemplate ./asyncapi.yaml @asyncapi/html-template -o ./docs --use-new-generator --force-write",
"test": "jest --runInBand --config jest.config.mjs --detectOpenHandles --collectCoverage=false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/remidosol/real-time-trade-api"
},
"keywords": [
"express",
"socket.io",
"websocket",
"javascript",
"ecmascript",
"realtime",
"trading",
"order-book",
"trade"
],
"lint-staged": {
"*.{js,json,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@socket.io/redis-streams-adapter": "^0.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"http-status": "^2.1.0",
"ioredis": "^5.4.2",
"socket.io": "^4.8.1",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"xss-clean": "^0.1.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@asyncapi/generator": "^2.6.0",
"@asyncapi/html-template": "^3.1.0",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.18.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"eslint": "^9.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"lint-staged": "^15.4.1",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"socket.io-client": "^4.8.1",
"socket.io-mock": "^1.3.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}