-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.41 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
81
82
83
84
85
86
{
"dependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-flow": "^7.22.5",
"@babel/preset-typescript": "^7.27.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"krb-smart-api-module": "^1.0.29",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.43",
"public-ip": "^4.0.2",
"smartapi-javascript": "^1.0.27",
"totp-generator": "^0.0.14"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/http-errors": "^1.8.2",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.8",
"@types/supertest": "^2.0.12",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji-conventional": "^1.0.2",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.6.3",
"lint-staged": "^15.2.2",
"nodemon": "^2.0.22",
"prettier": "^3.2.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
},
"scripts": {
"build": "babel src --extensions .ts -d dist",
"start": "node dist/server.js",
"dev": "ts-node ./src/server.ts",
"watch": "npm run build -- --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --maxWorkers=1",
"test:coverage": "jest --coverage --maxWorkers=1",
"verify": "pnpm format && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"commit": "cz",
"precommit": "lint-staged",
"clean:logs": "node scripts/clean-logs.js",
"backtest": "node scripts/backtest-straddle.mjs",
"get-pending-orders": "ts-node -T scripts/get-pending-orders.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=22.0.0"
}
}