forked from cdcalderon/StockMarketQuotesWithIndicatorsAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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
{
"name": "stock-market-quote-with-indicators",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'",
"startlocal": "npm-run-all --parallel open:src lint:watch",
"open:src": "node server/server.js",
"lint": "esw playground server routes controllers --color",
"lint:watch": "npm run lint -- --watch"
},
"engines": {
"node": "6.11.1"
},
"author": "carlos calderon",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.16.1",
"cors": "^2.8.1",
"express": "^4.14.1",
"google-finance": "^0.1.9",
"lodash": "^4.17.4",
"lodash-node": "^3.10.2",
"moment": "^2.18.1",
"mongodb": "^2.2.24",
"mongoose": "^4.8.3",
"mongoose-paginate": "^5.0.3",
"node-schedule": "^1.2.0",
"talib": "1.0.2",
"technicalindicators": "^0.2.24",
"yahoo-finance": "^0.2.16"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^2.1.14",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1",
"supertest": "^3.0.0"
}
}