-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "cloudstorage-server",
"version": "0.6.0",
"description": "Simple backend for storing key/value pairs via http requests. Implemented with Node.js and MongoDB. Made for IOT projects",
"main": "main.js",
"directories": {
"test": "tests"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-rate-limit": "^4.0.4",
"express-slow-down": "^1.3.1",
"express-ws-routes": "^1.1.0",
"mongodb": "^3.2.7",
"morgan": "^1.9.1",
"object-hash": "^1.3.1",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"websocket": "^1.0.28",
"websockets": "^0.2.0",
"ws": "^7.0.0"
},
"devDependencies": {
"mocha": "^6.1.4"
},
"scripts": {
"start": "node app/main.js",
"debug": "nodemon app/main.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gilmaimon/CloudStorage-Server.git"
},
"author": "Gil Maimon",
"license": "ISC",
"bugs": {
"url": "https://github.com/gilmaimon/CloudStorage-Server/issues"
},
"homepage": "https://github.com/gilmaimon/CloudStorage-Server#readme"
}