forked from austin-starks/NextTrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 996 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
{
"name": "live-trader",
"version": "1.0.0",
"description": "A system to algorithmically trade.",
"main": "server/app.js",
"scripts": {
"install-client-and-build": "cd client && npm install && npm run build",
"install-client": "cd client && npm install",
"install-server": "cd app && npm install",
"install-all": "npm run install-client && npm run install-server",
"heroku-postbuild": "npm run install-client-and-build && npm run install-server",
"start": "cd app && tsc && node dist/app.js",
"test": "jest --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/austin-starks/NextTrade.git"
},
"author": "Austin Starks",
"bugs": {
"url": "https://github.com/austin-starks/NextTrade/issues"
},
"homepage": "https://github.com/austin-starks/NextTrade#readme",
"dependencies": {
"concurrently": "^6.3.0"
},
"devDependencies": {
"prettier-plugin-organize-imports": "^2.3.4"
}
}