-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "MainstreetAnalytics",
"version": "1.0.0",
"author": "Tabitha Blagdon (tabitha.blagdon@gmail.com), Christine Chou (christinejchou@gmail.com), Carlos Espinal (cespinalt@gmail.com), Quin Kinser (quinkinser@gmail.com)",
"description": "Mainstreet Analytics is a real-time data visualization dashboard. It collects data from Twitter API, Google Trends API, and NY Times API and uses AlchemyAPI sentiment analysis to provide company specific and overall market insights as a resource to help investors make investment decisions by 'predicting the present.'",
"keywords": [],
"license": "ISC",
"main": "index.js",
"scripts": {
"compile": "webpack --watch",
"start": "nodemon server/server.js | webpack --watch",
"test": "mocha test"
},
"dependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"cron": "^1.1.0",
"cutestrap": "^1.3.1",
"express": "^4.13.4",
"express-partial": "^0.1.0",
"express-session": "^1.14.0",
"google-trends-api": "^1.2.5",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"mongoose": "^4.5.5",
"morgan": "^1.7.0",
"node-cron": "^1.1.1",
"passport": "^0.3.2",
"passport-linkedin": "^1.0.0",
"react": "^15.2.1",
"react-bootstrap": "^0.30.0-rc.2",
"react-dom": "^15.2.1",
"react-router": "^2.6.0",
"request": "^2.73.0",
"sentiment": "^1.0.6",
"twitter": "^1.3.0",
"twitter-stream-channels": "^1.0.0",
"victory": "0.6.1",
"watson-developer-cloud": "^1.12.2",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"chai": "^3.2.0",
"chai-http": "^1.0.0",
"nodemon": "^1.9.2"
}
}