-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
122 lines (122 loc) · 2.83 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
120
121
122
{
"name": "test-api",
"version": "0.0.1-SNAPSHOT",
"description": "Api Test",
"main": "index.js",
"nodemonConfig": {
"ignore": [
"test/**/*.js",
"seeds/**/*.js",
"node_modules/**/node_modules"
],
"restartable": "rs",
"delay": "3500",
"env": {
"NODE_ENV": "development"
}
},
"scripts": {
"start:migrate": "npm run db:migrate && node index.js",
"start": "node index.js",
"dev": "gulp dev",
"test": "gulp eslint && npm run test:cover",
"test:teamcity": "cross-env NODE_ENV=test nyc mocha",
"mocha": "cross-env NODE_ENV=test mocha",
"test:cover": "cross-env NODE_ENV=test nyc mocha",
"lint": "gulp eslint",
"build": "gulp build",
"db:migrate": "npx knex migrate:latest",
"db:seed": "npx knex seed:run"
},
"directories": {
"test": "./test"
},
"nyc": {
"all": true,
"reporter": [
"text",
"html",
"teamcity"
],
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"exclude": [
"coverage/**/*.js",
"commitlint.config.js",
"gulpfile.js",
"knexfile.js",
"src/app.js",
"src/global.js",
"src/index.js",
"db/**/*.js",
"test/**/*.js",
"src/services/arqService.js"
]
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cron": "^1.8.1",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^3.6.6",
"helmet": "^3.21.2",
"knex": "^0.20.8",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.8.11",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"pg": "^7.18.1",
"request": "^2.88.0",
"require-dir": "^1.2.0",
"saslprep": "^1.0.3",
"sqlite3": "^4.1.1",
"swagger-ui-express": "^4.1.3",
"uuidv4": "^6.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"babel-eslint": "^10.0.3",
"cross-env": "^6.0.3",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-promise": "^4.2.1",
"expect": "^24.9.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-json-editor": "^2.5.4",
"gulp-load-plugins": "^2.0.2",
"gulp-nodemon": "^2.4.2",
"gulp-rename": "^2.0.0",
"husky": "^4.2.0",
"mocha": "^7.0.0",
"mock-knex": "^0.4.7",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"should": "^13.2.3",
"sinon": "^8.1.0",
"supertest": "^4.0.2"
},
"repository": {
"type": "git",
"url": "https://"
},
"bugs": {
"url": "https://"
},
"homepage": "https://",
"engines": {
"node": ">=12.14"
},
"author": "gverges@INDEC (https://github.com/indec-it)",
"license": "MIT"
}