-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 5.02 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 5.02 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
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "node_clean",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"yarn": "1.x",
"npm": "8.x"
},
"type": "commonjs",
"scripts": {
"prestart": "npm run build && npm run db:seed",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean:typed": "rimraf typed",
"clean:dist": "rimraf dist",
"clean-build": "rimraf typed && rimraf dist && rimraf -f tsconfig.tsbuildinfo",
"build": "npm run clean-build && npm run build:types && npm run build:babel && npm run clean:typed",
"build:types": "npx tsc",
"build:babel": "babel typed --delete-dir-on-start --copy-files --ignore \"typed/**/*.d.ts,typed/**/*.js.map,typed/**/*.spec.js\" --source-maps inline --extensions \".ts,.tsx,.js,.jxs\" --no-copy-ignored -d dist",
"build:js": "babel src --delete-dir-on-start --copy-files --ignore \"src/**/*.spec.js\" --source-maps inline --extensions \".ts,.tsx,.js,.jxs\" --no-copy-ignored -d dist",
"start": "cross-env NODE_ENV=production pm2-runtime start ecosystem.config.js --env production",
"start:dev": "npx nodemon",
"test": "NODE_ENV=test nyc --reporter=text --reporter=html --reporter=lcov ts-mocha -r tsconfig-paths/register \"src/**/**/*.spec.ts\" --exit --timeout 20000 --recursive",
"lint": "node_modules/.bin/eslint \"./src/**/*.ts\"",
"db:seed": "node \"dist/scripts/seedDb\"",
"prettify": "yarn prettier --write .",
"prettify-check": "yarn prettier --check .",
"docs:api": "echo 'Building REST Docs...' && apidoc -i src/containers/ -o docs/apidocs",
"prepare": "husky install",
"heroku-prebuild": "export NPM_CONFIG_PRODUCTION=false; export NODE_ENV=; NPM_CONFIG_PRODUCTION=false NODE_ENV=development npm install --only=dev --dev",
"heroku-postbuild": "export NPM_CONFIG_PRODUCTION=true; export NODE_ENV=production;",
"generate": "bash src/scripts/gen/create.sh"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "TLDO",
"dependencies": {
"-": "^0.0.1",
"@aws-sdk/client-s3": "^3.360.0",
"@faker-js/faker": "^7.0.0",
"@sendgrid/mail": "^7.6.2",
"@sentry/integrations": "^7.51.2",
"@sentry/node": "^7.51.2",
"@types/cookie-session": "^2.0.44",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/winston-loggly-bulk": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"amqplib": "^0.10.3",
"apidoc": "^0.53.0",
"awilix": "^8.0.0",
"awilix-express": "^8.0.0",
"axios": "^1.0.0",
"bcryptjs": "^2.4.3",
"bitpay-sdk": "^3.0.2202",
"body-parser": "^1.19.0",
"bullmq": "^4.1.0",
"chai-as-promised": "^7.1.1",
"convict": "^6.0.1",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"dotenv-extended": "^2.9.0",
"eslint": "^8.40.0",
"express": "^4.18.2",
"express-joi-validation": "^5.0.0",
"express-validator": "^6.14.0",
"fancy-log": "^2.0.0",
"funckage": "^0.2.0",
"graphql": "^15.3.0",
"graphql-http": "^1.18.0",
"helmet": "^6.0.0",
"http-status-codes": "^2.1.4",
"ioredis": "^5.3.2",
"joi": "^17.4.1",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb-memory-server": "^8.4.2",
"mongoose": "^6.8.3",
"mongoose-paginate-v2": "^1.4.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"pm2": "^5.2.2",
"request-ip": "^3.0.0",
"stripe": "^10.0.0",
"winston": "^3.3.3",
"winston-loggly-bulk": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/node": "7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "7.18.9",
"@types/amqplib": "^0.10.1",
"@types/autocannon": "^7.9.0",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.4",
"@types/convict": "^6.1.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.192",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.3",
"autocannon": "^7.11.0",
"babel-plugin-module-resolver": "4.1.0",
"chai": "4.3.6",
"conventional-github-releaser": "^3.1.5",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-git": "^2.10.1",
"gulp-todo": "^7.1.1",
"husky": "8.0.1",
"minimist": "^1.2.8",
"mocha": "^10.2.0",
"node-mocks-http": "^1.12.2",
"nodemon": "2.0.20",
"nyc": "15.1.0",
"prettier": "2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^5.1.5"
},
"license": "ISC"
}