-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "jobtweets",
"version": "1.0.0",
"description": "\"Find realtime job tweets\"",
"main": "server.js",
"scripts": {
"test": "jest --watch",
"start": "node server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "node start-client.js",
"lint": "eslint \"**/*.js\" \"**/*.jsx\"",
"lint:fix": "eslint \"**/*.js\" \"**/*.jsx\" --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"asn1": "^0.2.4",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"ioredis": "^3.2.2",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"natural": "^0.6.3",
"requireindex": "^1.2.0",
"socket.io": "^2.3.0",
"twitter": "^1.7.1",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^3.1.0",
"ioredis-mock": "^3.14.3",
"jest": "^23.6.0"
}
}