-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
119 lines (119 loc) · 3.08 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
110
111
112
113
114
115
116
117
118
119
{
"name": "sl-improvement-service",
"version": "1.0.0",
"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.0",
"axios": "^1.6.8",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"cache-manager": "^3.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.1.0",
"chartjs-plugin-datalabels": "^0.7.0",
"cheerio": "^1.0.0-rc.12",
"cli-table": "^0.3.1",
"client-cloud-services": "^3.0.6",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"ejs": "^3.1.10",
"elevate-cloud-storage": "^2.1.0",
"elevate-logger": "^3.1.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"express-validator": "^5.3.1",
"fn-args": "^4.0.0",
"form-data": "^4.0.0",
"fs": "0.0.1-security",
"fs-extra": "^9.0.1",
"json2csv": "^5.0.3",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"kafka-node": "^4.1.3",
"keycloak-auth-utils": "^3.3.0",
"lodash": "^4.17.15",
"log": "^1.4.0",
"md5": "^2.3.0",
"mocha": "^6.2.2",
"module-alias": "^2.2.3",
"moment-timezone": "^0.5.31",
"mongodb": "^3.7.4",
"mongoose": "^5.9.4",
"mongoose-autopopulate": "^0.12.0",
"mongoose-delete": "^0.5.1",
"mongoose-timestamp": "^0.6.0",
"mongoose-ttl": "0.0.3",
"node-cache": "^5.1.2",
"p-each-series": "^2.1.0",
"path": "^0.12.7",
"qrcode": "^1.5.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"require-all": "^3.0.0",
"uuid": "^8.3.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^8.16.0",
"grunt-apidoc": "^0.11.0",
"gulp": "^4.0.2",
"gulp-apidoc": "^0.2.8",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.6.2"
},
"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"
}
}