-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 977 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
32
33
34
35
36
{
"name": "sentiment_visualizing",
"version": "1.0.0",
"description": "",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"bot": "nodemon bot.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run bot\" \"npm run client\"",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build"
},
"author": "Jos",
"license": "ISC",
"dependencies": {
"@vitalets/google-translate-api": "^7.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"fs": "0.0.2",
"google-translate": "^3.0.0",
"mongoose": "^5.11.3",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"sentiment": "^5.0.2",
"tunnel": "0.0.6",
"twit": "^2.2.11"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}