-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.62 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "measurify-server",
"version": "0.7.0",
"description": "Measurify Cloud API Server",
"main": "server.js",
"host": "localhost",
"scripts": {
"test": "mocha --timeout 20000 --exit --use_strict --file ./test/before-test.js",
"dev": "nodemon ./api.js dev",
"prod": "node --max_old_space_size=4096 ./api.js prod",
"docker": "pm2-runtime start ./api.js -- docker",
"start": "node --max_old_space_size=4096 api.js",
"inspect": "node --max_old_space_size=4096 --inspect api.js",
"profile": "node --max_old_space_size=4096 profile.js",
"debug": "nodemon --max_old_space_size=4096 --inspect api.js dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/measurify/server.git"
},
"keywords": [
"API",
"Measurify",
"API",
"RESTful",
"IoT",
"Edge",
"Cloud Computing",
"Fog Computing"
],
"author": "Riccardo Berta",
"license": "MIT",
"homepage": "https://github.com/measurify/server.git",
"dependencies": {
"@nearform/clinic-doctor": "^2.6.1",
"@nearform/doctor": "^4.1.2",
"@types/mongoose-geojson-schema": "^2.1.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"check-password-strength": "^2.0.7",
"compression": "^1.7.4",
"compute-variance": "^3.0.0",
"connect-busboy": "^1.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csv-transpose": "^1.2.0",
"dev-env": "^1.0.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"greenlock-express": "^4.0.3",
"json2csv": "^5.0.7",
"json5": "^2.2.3",
"jsonwebtoken": "^8.5.1",
"mathjs": "^10.6.4",
"mongodb": "^4.8.0",
"mongoose": "^5.13.20",
"mongoose-autopopulate": "^0.14.0",
"mongoose-geojson-schema": "^2.2.5",
"mongoose-morgan": "^1.0.17",
"mongoose-paginate-v2": "^1.7.4",
"multer": "^1.4.4",
"multer-s3": "^3.0.1",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.6",
"nodemon": "^2.0.22",
"paginate-array": "^2.1.0",
"passport": "^0.6.0",
"passport-custom": "^1.1.1",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pug": "^3.0.2",
"react-vis": "^1.12.1",
"request": "^2.88.2",
"sendmail": "^1.6.1",
"shuffle-array": "^1.0.1",
"skmeans": "^0.11.3",
"slug": "^5.3.0",
"socket.io-client": "^4.7.2",
"summary-statistics": "^1.0.0",
"underscore": "^1.13.6",
"ws": "^8.14.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.16.0"
},
"directories": {
"test": "test"
}
}