-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 816 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 816 Bytes
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
{
"name": "wallstrat",
"version": "1.0.0",
"license": "wallstrat@2018",
"description": "Cryptocurrency Market Data API",
"homepage": "https://www.wallstart.com",
"main":"dist/marketData/main/index.js",
"types": "main/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -w",
"start": "concurrently \"tsc -w\" \"nodemon dist/marketData/test/test.js\"",
"startServer": "node dist/marketData/test/test.js"
},
"dependencies": {
"bottleneck": "^2.5.0",
"express": "^4.16.3",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/node": "^10.5.2",
"concurrently": "^3.5.1",
"nodemon": "^1.17.5",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
}
}