-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "trader",
"version": "1.0.0",
"description": "a crypto-trading risk management app",
"main": "client/src/index.js",
"author": "Alexander Hernandez <[email protected]>",
"license": "MIT",
"scripts": {
"client": "cd client && yarn start",
"server": "npx nodemon server.js",
"dev": "concurrently --kill-others-on-fail\"yarn server\" \"yarn client\"",
"build-client": "cd client && yarn build",
"start-redis": "redis-server redis.conf",
"production": "PORT=6341 node server.js"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cw-sdk-node": "^1.0.0-beta.8",
"dotenv": "^9.0.1",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"got": "^11.8.2",
"ioredis": "^4.27.2",
"passport": "^0.4.1",
"passport-auth0": "^1.4.0",
"rate-limit-redis": "^2.1.0",
"technicalindicators": "^3.1.0",
"tulind": "^0.8.18"
},
"devDependencies": {
"concurrently": "^6.0.0"
}
}