-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "tweet-sense-api",
"version": "1.0.0",
"scripts": {
"test": "jest",
"start": "node main.js",
"precommit": "npm run lint",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"axios": "latest",
"config": "latest",
"http": "latest",
"ibm-watson": "^4.1.0",
"natural": "^0.6.3",
"sentiment": "^5.0.1",
"socket.io": "latest",
"socket.io-client": "latest",
"twit": "^2.2.11",
"twitter-stream-channels": "^1.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"babel-cli": "^6.26.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"nodemon": "latest",
"prettier": "^1.18.0"
}
}