-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.78 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
{
"name": "backend",
"version": "0.0.1",
"description": "complete-server",
"scripts": {
"build_dev": "copyfiles -u 3 src/config/dev/*.json src/config",
"build_pre_prod": "copyfiles -u 3 src/config/pre_production/*.json src/config",
"build_prod": "copyfiles -u 3 src/config/production/*.json src/config",
"start": "npm run build_dev & TZ=America/Argentina/Buenos_Aires nodemon src/servers/index.coffee",
"start_pre_prod": "npm run build_pre_prod & TZ=Etc/Universal nodemon src/servers/index.coffee",
"start_prod": "npm run build_prod & nodemon src/servers/index.coffee",
"lint": "eslint .",
"test": "cross-env NODE_ENV=test jest --forceExit --detectOpenHandles --maxWorkers=1 --testTimeout=50000",
"test:watch": "cross-env NODE_ENV=test jest ---watchAll",
"test:unit": "cross-env NODE_ENV=test jest jest --testPathPattern=test/unit --forceExit --detectOpenHandles --maxWorkers=1 --testTimeout=50000",
"test:integration": "cross-env NODE_ENV=test jest jest --testPathPattern=test/integration --forceExit --detectOpenHandles --maxWorkers=1 --testTimeout=50000",
"test:coverage": "cross-env NODE_ENV=test jest --coverage --forceExit --detectOpenHandles --maxWorkers=1 --testTimeout=50000",
"test:coverage:coveralls": "cross-env NODE_ENV=test jest --coverage --forceExit --detectOpenHandles --maxWorkers=1 --testTimeout=50000 && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"pub",
"express",
"coffee"
],
"author": "Carlos Matias Baglieri",
"license": "PRIVATE",
"dependencies": {
"agenda": "^4.2.1",
"aws-sdk": "^2.1087.0",
"axios": "^0.26.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"bluebird-q": "^2.1.1",
"body-parser": "^1.19.1",
"cluster": "^0.7.7",
"coffee": "^5.4.0",
"concurrently": "^7.0.0",
"connect-mongo": "^4.6.0",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"ejs": "^3.0.2",
"elastic-apm-node": "^3.29.0",
"exit": "^0.1.2",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"fs": "^0.0.1-security",
"googleapis": "^95.0.0",
"helmet": "^5.0.2",
"hide-powered-by": "^1.1.0",
"hsts": "^2.2.0",
"http-status-codes": "^2.2.0",
"i18n": "^0.14.1",
"ioredis": "^4.28.5",
"ip": "^1.1.5",
"ip2location-nodejs": "^9.1.0",
"joi": "^17.6.0",
"json-merger": "^1.1.7",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.2",
"moment": "^2.29.1",
"mongodb": "^4.4.1",
"mongoose": "^6.2.0",
"mongoose-subquery": "^2.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"multer-storage-s3": "^1.1.1",
"mysql2": "^2.3.3",
"node-cache": "^5.1.2",
"nodemailer": "^6.7.2",
"nunjucks": "^3.2.3",
"os": "^0.1.2",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"prom-client": "^14.0.1",
"pug": "^3.0.2",
"ramda": "^0.28.0",
"rand-token": "^1.0.1",
"readdirp": "^3.6.0",
"redis": "^4.0.4",
"request": "^2.88.2",
"response-time": "^2.3.2",
"sequelize": "^6.15.1",
"stripe": "^8.217.0",
"swagger-ui-express": "^4.3.0",
"twilio": "^3.74.0",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1",
"ws": "^8.4.2",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"chance": "^1.1.8",
"coffeescript": "^2.6.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.7.0",
"jest": "^26.6.3",
"nodemon": "^2.0.13",
"supertest": "^6.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.8"
}
}