-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "@3rd-eye-labs/openmm",
"version": "0.1.10",
"description": "Universal Market Making Toolkit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openmm": "dist/cli/cli.js"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "ts-node src/index.ts",
"cli": "ts-node src/cli/cli.ts",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest --testPathPattern=integration --runInBand",
"test:coverage": "jest --coverage --coverageReporters=html && open coverage/index.html",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"typecheck": "tsc --project tsconfig.typecheck.json",
"precommit-check-all": "npm run typecheck && npm run lint && npm run format && npm test",
"start": "node dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"market-making",
"trading",
"crypto",
"exchange"
],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"chalk": "^4.1.2",
"commander": "^14.0.2",
"dotenv": "^16.6.1",
"fastify": "^5.8.2",
"winston": "^3.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/commander": "^2.12.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.37",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"jest": "^29.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}