-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.88 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "hegemon",
"type": "module",
"description": "Tradier custom client with a strategy builder, macros, and algorithmic execution.",
"repository": {
"type": "git",
"url": "git+https://github.com/stephencorwin/hegemon.git"
},
"author": {
"name": "Stephen Corwin",
"email": "stephenjcorwin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stephencorwin/hegemon/issues"
},
"homepage": "https://github.com/stephencorwin/hegemon#readme",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"start": "npm run start:app",
"start:app": "cross-env NODE_ENV=development webpack-cli -w --config .webpack/app.js",
"build": "npm run build:app",
"build:app": "cross-env NODE_ENV=production webpack-cli --config .webpack/app.js",
"pack": "npm run pack:app",
"pack:app": "cross-env NODE_ENV=production webpack-cli --config .webpack/app.js",
"publish": "npm run publish:app",
"publish:app": "cross-env NODE_ENV=production DEPLOY=true webpack-cli --config .webpack/app.js",
"test": "jest",
"test:debug": "jest --detectLeaks",
"test:debug:watch": "cross-env DEBUG=jest npm run test -- --watch --verbose false --silent false --runInBand --detectLeaks",
"test:watch": "cross-env DEBUG=jest npm run test -- --watch --verbose false --silent false --runInBand",
"lint": "eslint --fix **/*.{js,ts,tsx}"
},
"engines": {
"npm": ">=11.0.0 <=12.0.0",
"node": ">=22.0.0 <=23.0.0"
},
"dependencies": {
"axios": "1.9.0",
"body-parser": "^2.2.0",
"chalk": "5.4.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "4.1.0",
"events": "^3.3.0",
"express": "^5.1.0",
"lodash": "^4.17.21",
"nyse-holidays": "^1.2.0",
"polished": "^4.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.6.0",
"react-router-dom": "^7.6.0",
"request": "2.88.2",
"styled-components": "6.1.18",
"uuid": "11.1.0",
"valtio": "2.1.5"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.18",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.18",
"@types/prop-types": "^15.7.14",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"babel-jest": "^29.7.0",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.1.2",
"copy-webpack-plugin": "^13.0.0",
"core-js": "^3.42.0",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"dotenv-webpack": "^8.1.0",
"electron": "^36.3.1",
"electron-builder": "^26.0.12",
"electron-devtools-installer": "^4.0.0",
"electron-log": "^5.4.0",
"electron-updater": "^6.6.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.3",
"husky": "9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.0.0",
"nodemon-webpack-plugin": "^4.8.2",
"prettier": "^3.5.3",
"raw-loader": "^4.0.2",
"ts-jest": "^29.3.3",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1"
}
}