This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.88 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
{
"name": "tools-api",
"version": "0.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"celebrate": "^12.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"express-prometheus-middleware": "^0.9.5",
"helmet": "^3.22.0",
"lodash.get": "^4.4.2",
"lodash.omit": "^4.5.0",
"mongoose": "^5.9.14",
"nconf": "^0.10.0",
"pino": "^6.2.1",
"prom-client": "^12.0.0",
"stable-cache": "0.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ls-age/commitlint-circle": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"pino-pretty": "^4.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard-version": "^8.0.0",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node server.js",
"start:dev": "nodemon --ignore data/ --exec 'npm start'",
"coverage:unit": "nyc npm run test:unit",
"coverage:integration": "nyc --no-clean npm run test:integration",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"coverage": "npm run coverage:unit && npm run coverage:integration && npm run coverage:report && tar -czvf coverage.tar.gz coverage",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "NODE_ENV=test mocha --recursive --require ./tests/setup.js ./tests/unit",
"test:integration": "NODE_ENV=test mocha --recursive --require ./tests/setup.js ./tests/integration",
"lint": "eslint . --max-warnings 0",
"release": "standard-version"
},
"keywords": [],
"author": "joao-fontenele",
"license": "MIT"
}