-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.37 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.37 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
123
124
125
126
127
128
129
{
"name": "hgnrest",
"version": "1.0.0",
"description": "This module is the REST module built on NodeJS to support MongoDB activities, Since EmberData has no direct adapters for MongoDB. This module will later be intergrated with EmberJS HGN project to maintain singularity.",
"main": "restapp",
"engines": {
"node": ">=20.0.0 <21"
},
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand --forceExit --detectOpenHandles",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"test:coverage:watch": "jest --coverage --watch --passWithNoTests",
"test:coverage:ci": "jest --coverage --watchAll=false --passWithNoTests --verbose",
"test:coverage:enforce": "jest --coverage --passWithNoTests --bail",
"test:threshold": "jest --coverage --passWithNoTests --verbose --bail",
"test:summary": "jest --coverage --passWithNoTests --verbose --coverageReporters=text-summary",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit.config.js",
"test:integration": "npm test -- --watch -c jest-integration.config.js",
"test:staged": "npm test --findRelatedTests",
"test:ci": "npm test -- --coverage",
"lint": "eslint ./src --ext .js,.jsx",
"lint:fix": "eslint ./src --ext .js,.jsx --fix",
"build": "babel src -d dist",
"buildw": "babel src -d dist --watch",
"start": "node dist/server.js",
"dev": "nodemon --exec babel-node src/server.js",
"serve": "babel-node src/server.js",
"prepare-macos-linux": "husky install && chmod ug+x .husky/* && chmod ug+x .git/hooks/*",
"prepare": "husky install"
},
"author": "AK",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@types/bson": "^4.2.4",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.0",
"@types/node": "^8.10.61",
"@types/supertest": "^6.0.2",
"babel-jest": "^29.7.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"mongodb-memory-server": "^7.6.3",
"nock": "^14.0.10",
"nodemon": "^3.0.1",
"prettier": "3.2.5",
"supertest": "^6.3.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.920.0",
"@azure/storage-blob": "^12.26.0",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.10.2",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@paypal/paypal-server-sdk": "^0.6.0",
"@sentry/integrations": "^7.110.0",
"@sentry/node": "^7.120.3",
"@types/node-fetch": "^2.6.12",
"abort-controller": "^3.0.0",
"async-exit-hook": "^2.0.1",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.7",
"babel-plugin-module-resolver": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"card-validator": "^10.0.2",
"cheerio": "^0.22.0",
"cloudinary": "^2.8.0",
"compression": "^1.8.0",
"cors": "^2.8.4",
"cron": "^1.8.2",
"date-fns": "^2.30.0",
"dotenv": "^5.0.1",
"dropbox": "^10.34.0",
"express": "^4.17.1",
"express-validator": "^7.0.1",
"express-ws": "^5.0.2",
"geoip-lite": "^1.4.10",
"googleapis": "^100.0.0",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"mongodb": "^3.7.3",
"mongoose": "^5.13.23",
"mongoose-validator": "^2.1.0",
"multer": "^2.0.2",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"node-datetime": "^2.0.3",
"node-fetch": "^2.6.7",
"node-schedule": "^2.1.1",
"nodemailer": "^7.0.11",
"parse-link-header": "^2.0.0",
"redis": "^4.2.0",
"regression": "^2.0.1",
"sanitize-html": "^2.16.0",
"sharp": "^0.34.5",
"socket.io": "^4.8.1",
"streamifier": "^0.1.1",
"supertest": "^6.3.4",
"telesignsdk": "^3.0.3",
"twilio": "^5.5.2",
"uuid": "^3.4.0",
"ws": "^8.17.1",
"xmlrpc": "^1.3.2"
},
"nodemonConfig": {
"watch": [
"/src/**/*"
]
}
}