-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "connection",
"version": "0.1.0",
"description": "",
"main": "server/index.js",
"scripts": {
"start:dev": "nodemon -L server/index.js",
"build": "npm run docs",
"start": "node server/index.js",
"docs": "jsdoc -r ./server/*.js -d ./docs",
"clean": "rm -r ./docs",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShipyardSuite/connection.git"
},
"keywords": [],
"author": "Shipyard Suite <shipyardsuite@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ShipyardSuite/connection/issues"
},
"homepage": "https://github.com/ShipyardSuite/connection#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"crypto-token": "^1.0.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"redis": "3.0.2",
"websocket": "^1.0.31",
"winston": "3.2.1",
"winston-redis": "3.1.0",
"ws": "^7.2.3"
},
"devDependencies": {
"buffer-json": "^2.0.0",
"buffer-json-encoding": "^1.0.2",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"moment": "^2.24.0",
"nodemon": "^2.0.2"
}
}