-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "stsath",
"version": "0.0.1",
"private": true,
"description": "Twitter Sentiment Analysis On Tweets & Hashtags",
"scripts": {
"start": "node app.js",
"devstart": "nodemon app.js",
"bundle": "./node_modules/.bin/webpack --colors",
"bundleproduction": "./node_modules/.bin/webpack -p",
"sequelizeinit": "node_modules/.bin/sequelize init",
"migration": "node_modules/.bin/sequelize db:migrate"
},
"dependencies": {
"Sentimental": "^1.0.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.15.1",
"cookie-parser": "~1.4.3",
"debug": "*",
"ejs": "*",
"express": "~4.13.4",
"jsonwebtoken": "^7.2.1",
"jspdf": "^1.3.2",
"jspdf-autotable": "^2.1.0",
"jwt-decode": "^2.1.0",
"material-auto-rotating-carousel": "^1.1.0",
"material-ui": "^0.16.6",
"moment": "^2.17.1",
"morgan": "~1.7.0",
"mysql": "^2.12.0",
"nodemailer": "^2.7.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-motion": "^0.4.7",
"react-router": "^3.0.0",
"react-swipeable-views": "^0.9.3",
"recharts": "^0.20.1",
"sentiment": "^2.1.0",
"sequelize": "^3.28.0",
"sequelize-cli": "^2.5.1",
"serve-favicon": "^2.3.2",
"twit": "^2.2.5",
"validator": "^6.2.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.25.0",
"expect": "^1.20.2",
"file-loader": "^0.9.0",
"jquery": "^3.1.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"node-sass": "^3.10.1",
"react-addons-test-utils": "^15.3.2",
"react-tap-event-plugin": "^2.0.1",
"sass-loader": "^4.0.2",
"script-loader": "^0.7.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adeelibr/stsath.git"
},
"keywords": [
"twitter",
"sentiment",
"tweets",
"hashtags"
],
"author": "Adeel Imran",
"license": "MIT",
"bugs": {
"url": "https://github.com/adeelibr/stsath/issues"
},
"homepage": "https://github.com/adeelibr/stsath#readme"
}