-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "chat-service",
"version": "1.0.0",
"description": "Chat Api",
"main": "lib/index.js",
"scripts": {
"test": "flow check && mocha -r @babel/register tests tests/unit/*",
"integration-test": "flow check && mocha -r @babel/register --timeout 30000 tests/integration/**",
"build": "npm run build:lib && npm run build:flow",
"build:lib": "babel src/ -d lib/",
"postinstall": "npm run build",
"build:flow": "flow-copy-source -v src/ lib/",
"start": "node lib/index.js"
},
"keywords": [
"node",
"js"
],
"author": "Meshileya Seun (meshileyaseun@gmail.com)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.6.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"sinon": "^7.5.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"flow-bin": "^0.109.0",
"flow-copy-source": "^2.0.8",
"mocha": "^6.2.2",
"winston": "^3.2.1"
},
"dependencies": {
"aws-sdk": "^2.598.0",
"basic-auth": "^2.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"events": "^3.0.0",
"express": "^4.16.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.0",
"multer": "^1.4.2",
"redis": "^3.0.2",
"restify-cors-middleware": "^1.1.1",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"socket.io-redis": "^6.1.0",
"socketio-auth": "^0.1.1",
"tsscmp": "^1.0.6",
"winston": "^3.2.1"
}
}