forked from airqo-platform/AirQo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.74 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "device-registry",
"version": "0.0.0",
"private": true,
"main": "./bin/www",
"scripts": {
"start": "node --max-old-space-size=1024 ./bin/www",
"stage": "NODE_ENV=staging node --max-old-space-size=1024 ./bin/www",
"dev-mac": "NODE_ENV=development nodemon --max-old-space-size=1024 ./bin/www",
"prod-mac": "NODE_ENV=production nodemon --max-old-space-size=1024 ./bin/www",
"stage-mac": "NODE_ENV=staging nodemon --max-old-space-size=1024 ./bin/www",
"dev-pc": "SET NODE_ENV=development&&nodemon --max-old-space-size=1024 ./bin/www",
"prod-pc": "SET NODE_ENV=production&&nodemon --max-old-space-size=1024 ./bin/www",
"stage-pc": "SET NODE_ENV=staging&&nodemon --max-old-space-size=1024 ./bin/www",
"prettier": "prettier --single-quote --print-width 80 --trailing-comma all --write 'src/**/*.js'",
"test": "mocha ./**/test/ut_*.js --exit"
},
"_moduleAliases": {
"@root": ".",
"@models": "models/",
"@utils": "utils",
"@controllers": "controllers",
"@config": "config",
"@middleware": "middleware",
"@scripts": "scripts",
"@routes": "routes"
},
"dependencies": {
"@google-cloud/bigquery": "^5.5.0",
"@google-cloud/iot": "^1.5.0",
"@googlemaps/google-maps-services-js": "^3.1.16",
"@kafkajs/confluent-schema-registry": "^3.0.1",
"@log4js-node/slack": "^1.0.0",
"app-module-path": "^2.2.0",
"avsc": "^5.4.16",
"axios": "^0.21.4",
"body-parser": "^1.18.3",
"clean-deep": "^3.4.0",
"cloudinary": "^1.23.0",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.3",
"crypto-js": "^4.1.1",
"debug": "~2.6.9",
"decimal-places": "0.0.2",
"dot-object": "^2.1.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-cluster": "0.0.5",
"express-session": "^1.17.1",
"express-validation": "^1.0.3",
"express-validator": "^6.12.0",
"generate-password": "^1.7.0",
"geolib": "^3.3.3",
"google-libphonenumber": "^3.2.22",
"helmet": "^3.21.1",
"http-status": "^1.4.0",
"install": "^0.13.0",
"is-empty": "^1.2.0",
"jade": "~1.11.0",
"joi": "^14.3.1",
"json2csv": "^5.0.7",
"jsonrepair": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"kafka-node": "^5.0.0",
"kafkajs": "^1.16.0",
"log4js": "^6.3.0",
"module-alias": "^2.2.2",
"moesif-nodejs": "^3.2.2",
"mongoose": "^5.13.5",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.9.1",
"mqtt": "^3.0.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-json-transform": "^1.1.2",
"nodemon": "^1.19.4",
"npm": "^7.20.5",
"numeral": "^2.0.6",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"point-in-polygon": "^1.1.0",
"qrcode": "^1.4.4",
"qs": "^6.9.4",
"redis": "^3.1.2",
"request": "^2.88.2",
"retry-request": "^4.1.1",
"serve-favicon": "~2.4.5",
"underscore": "^1.13.1",
"unique-names-generator": "^4.3.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"acorn": "^6.4.2",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"faker": "^5.5.3",
"gulp": "^4.0.2",
"gulp-mocha": "^8.0.0",
"gulp-util": "^3.0.8",
"mocha": "^8.1.3",
"prettier": "1.18.2",
"sinon": "^9.2.4",
"supertest": "^4.0.2"
}
}