-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "lametric-robinhood",
"version": "1.0.0",
"description": "",
"main": "dist/Server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "sh deploy.sh",
"start": "node dist/Server.js",
"start-dev": "ts-node src/Server.ts",
"reload": "nodemon -w dist -e 'js,hbs,graphql,ts' --exec 'npm start'",
"tsc": "tsc"
},
"author": "Torrey Leonard",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.10",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.20",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"algotrader": "^2.5.4",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"redis": "^3.0.2",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"winston": "^3.3.3"
}
}