-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
91 lines (91 loc) · 2.44 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
{
"name": "trader-bot",
"version": "1.0.0-alpha.1",
"private": true,
"description": "Stock trader bot",
"author": {
"name": "Michael Fischer"
},
"scripts": {
"build": "npm ci",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@mdi/font": "^5.9.55",
"async-es": "^3.2.0",
"chart.js": "^2.9.4",
"chartjs-adapter-luxon": "^0.2.2",
"core-js": "^3.9.1",
"cryptr": "^6.0.2",
"deep-equal": "^2.0.5",
"electron-prompt": "^1.6.2",
"luxon": "^1.26.0",
"memoizee": "^0.4.15",
"robinhood": "github:mafischer/robinhood-node#_login",
"roboto-fontface": "^0.10.0",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.2",
"twitter-v2": "^1.0.7",
"vex-js": "^4.1.0",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.1",
"vue-router": "^3.2.0",
"vuetify": "^2.4.8",
"vuex": "^3.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.12",
"@vue/cli-plugin-eslint": "~4.5.12",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-mocha": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.12",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "^1.1.3",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"electron": "^11.2.3",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.5.4",
"node-sass": "^4.12.0",
"sass": "^1.32.8",
"sass-loader": "^8.0.2",
"spectron": "^13.0.0",
"vue-cli-plugin-electron-builder": "~2.0.0-rc.6",
"vue-cli-plugin-vuetify": "^2.3.1",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.7.2"
},
"_id": "trader-bot@1.0.0",
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"bot",
"stock",
"nyse",
"nasdaq",
"robinhood"
],
"license": "ISC",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"readme": "ERROR: No README data found!"
}