-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.21 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
92
93
94
95
96
97
98
99
100
{
"name": "nodebot",
"repository": {
"url": "https://github.com/rylorin/nodebot"
},
"license": "UNLICENSED",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/",
"LICENSE"
],
"scripts": {
"bot:updater": "node dist/index.js -watch -update",
"build": "yarn run server:build && yarn run client:build",
"build:ib": "cd ./node_modules/@stoqey/ib && yarn install && yarn build",
"build:watch": "yarn tsc --watch",
"clean": "rm -rf dist",
"client:build": "vite build",
"client:dev": "vite",
"doc": "typedoc --excludeInternal",
"doc:dev": "typedoc --out ./doc-dev",
"postinstall": "patch-package && yarn build:ib",
"lint": "eslint ./src",
"prepare": "husky",
"prepublishOnly": "yarn build",
"qc": "yarn lint && tsc --noEmit && prettier --check . && stylelint \"**/*.css\"",
"release": "yarn lint && yarn qc && yarn doc && yarn build && yarn run storybook:build",
"serve": "vite preview",
"server:build": "tsc --project tsconfig.server.json",
"server:dev": "ts-node-dev --project tsconfig.server.json src/index -watch -server -account -import -trader",
"start": "node dist/index.js -server",
"start:dev": "concurrently \"yarn server:dev\" \"yarn client:dev\""
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/layout": "^2.3.1",
"@chakra-ui/react": "^2.10.4",
"@chakra-ui/system": "^2.6.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@stoqey/ib": "stoqey/ib#492d9e2e3b8bfa93d5f9eaef6f1f4ff02155ee1e",
"@tanstack/react-table": "^8.20.6",
"chakra-react-select": "^5.0.2",
"chart.js": "^4.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"fast-xml-parser": "^4.5.1",
"formik": "^2.4.6",
"framer-motion": "^11.15.0",
"json-stringify-safe": "^5.0.1",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-router-dom": "^7.0.2",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"winston": "^3.17.0",
"yahoo-finance2": "^2.13.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@smarttools/eslint-plugin-rxjs": "^1.0.9",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/validator": "^13.12.2",
"@vitejs/plugin-react": "^4.3.4",
"babel-loader": "^9.2.1",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"http-proxy-middleware": "^3.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"rxjs": "^7.8.1",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"webpack": "^5.97.1"
},
"engines": {
"node": "^20.18.1"
}
}