-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.11 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "sl-improvement-service",
"version": "3.4",
"description": "Improvement service",
"main": "app.js",
"bin": {
"improvement-service-migrations": "module/migrations/bin/migrations.js"
},
"scripts": {
"test": "",
"start": "NODE_ENV=development nodemon app.js",
"prod": "NODE_ENV=production node app.js",
"stage": "NODE_ENV=stage node app.js",
"qa": "NODE_ENV=qa node app.js",
"integration": "node app.js",
"dev": "nodemon app.js",
"prepare": "husky install",
"coverage": " nyc --reporter=lcov mocha --timeout 10000 test --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/ELEVATE-Project/project-service.git"
},
"keywords": [
"shikshalokam"
],
"author": "Shikshalokam",
"license": "ISC",
"bugs": {
"url": "https://github.com/ELEVATE-Project/project-service/issues"
},
"homepage": "https://github.com/ELEVATE-Project/project-service#readme",
"dependencies": {
"async": "3.2.6",
"axios": "1.6.8",
"body-parser": "1.20.3",
"bunyan": "1.8.15",
"bunyan-format": "0.2.1",
"cache-manager": "3.6.3",
"chai": "4.5.0",
"chai-http": "4.4.0",
"chart.js": "2.9.4",
"chartjs-node-canvas": "3.2.0",
"chartjs-plugin-datalabels": "0.7.0",
"cheerio": "1.1.2",
"cli-table": "0.3.11",
"client-cloud-services": "3.0.7",
"cors": "2.8.5",
"css-select": "5.1.0",
"csvtojson": "2.0.10",
"dotenv": "8.6.0",
"ejs": "3.1.10",
"elevate-cloud-storage": "2.6.4",
"elevate-logger": "3.1.0",
"elevate-services-health-check": "0.0.9",
"express": "4.21.2",
"express-fileupload": "1.5.2",
"express-validator": "5.3.1",
"fn-args": "4.0.0",
"form-data": "4.0.4",
"fs": "0.0.1-security",
"fs-extra": "9.0.1",
"json2csv": "5.0.7",
"jsonwebtoken": "8.5.1",
"jwt-decode": "2.2.0",
"kafka-node": "4.1.3",
"keycloak-auth-utils": "3.3.0",
"lodash": "4.17.21",
"log": "1.4.0",
"md5": "2.3.0",
"mocha": "6.2.3",
"module-alias": "2.2.3",
"moment-timezone": "0.5.48",
"mongodb": "3.7.4",
"mongoose": "5.13.23",
"mongoose-autopopulate": "0.12.0",
"mongoose-delete": "0.5.4",
"mongoose-timestamp": "0.6.0",
"mongoose-ttl": "0.0.3",
"node-cache": "5.1.2",
"p-each-series": "2.2.0",
"path": "0.12.7",
"qrcode": "1.5.4",
"request": "2.88.2",
"request-promise": "4.2.6",
"require-all": "3.0.0",
"uuid": "8.3.2",
"xml-js": "1.6.11",
"xml2json": "0.12.0"
},
"devDependencies": {
"eslint": "8.57.1",
"grunt-apidoc": "0.11.0",
"gulp": "4.0.2",
"gulp-apidoc": "0.2.8",
"husky": "8.0.3",
"lint-staged": "12.5.0",
"nodemon": "2.0.22",
"prettier": "2.8.8"
},
"lint-staged": {
".*": "prettier --ignore-unknown --write",
"*": "prettier --ignore-unknown --write"
},
"_moduleAliases": {
"@root": ".",
"@modules": "module",
"@databaseQueries": "databaseQueries",
"@generics": "generics",
"@services": "generics/services",
"@helpers": "generics/helpers",
"@models": "models",
"@controllers": "controllers",
"@constants": "generics/constants",
"@kafkaConsumers": "generics/kafka/consumers",
"@config": "config",
"@routes": "routes",
"@utils": "utils",
"@envVariables": "envVariables",
"@healthCheck": "healthCheck"
}
}