This repository was archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 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
{
"name": "nrpti-api",
"version": "1.0.1",
"license": "Apache-2.0",
"main": "app",
"scripts": {
"start": "node app",
"test": "node_modules/.bin/jest --verbose",
"lint": "npm-run-all -l -s -c lint:*",
"lint:1": "eslint . --ignore-pattern 'node_modules' --ext .js",
"lint:2": "prettier ./**/*.js --warn",
"lint-fix": "npm-run-all -l -s -c lint-fix:*",
"lint-fix:1": "eslint . --fix --ignore-pattern 'node_modules' --ext .js",
"lint-fix:2": "prettier ./**/*.js --write --loglevel warn"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testURL": "http://localhost/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js",
"src/**/*.js",
"!src/**/*.test.js",
"!src/test/**"
],
"testResultsProcessor": "jest-sonar-reporter",
"testEnvironment": "node"
},
"jestSonar": {
"reportPath": "coverage"
},
"dependencies": {
"aws-sdk": "^2.613.0",
"axios": "^0.19.0",
"body-parser": "1.19.0",
"clamav.js": "0.12.0",
"csvtojson": "2.0.10",
"db-migrate": "0.11.6",
"db-migrate-mongodb": "1.5.0",
"express": "4.17.1",
"jwks-rsa": "1.6.0",
"moment": "2.29.4",
"mongoose": "5.7.7",
"qs": "6.9.0",
"stream": "0.0.2",
"swagger-tools": "0.10.4",
"winston": "2.4.4",
"yamljs": "0.3.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"database-cleaner": "1.3.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.0",
"factory-girl": "5.0.4",
"jest": "24.9.0",
"jest-sonar-reporter": "^2.0.0",
"jsonwebtoken": "8.5.1",
"mongodb-memory-server": "5.2.8",
"nock": "11.4.0",
"npm-run-all": "^4.1.5",
"prettier": "~1.19.1",
"shelljs": "0.8.3",
"supertest": "4.0.2"
}
}