-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "bff-tickets-service",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:dev": "node --trace-warnings app.js NODE_ENV=dev",
"start:w": "nodemon app.js NODE_ENV=dev",
"eslint": "eslint ./",
"eslint:fix": "eslint ./ --fix",
"unit-test": "./node_modules/mocha/bin/mocha ./app/**/*.spec.js ./app/**/**/*.spec.js ./app/**/**/**/*.spec.js -t 10000",
"unit-test-w": "./node_modules/mocha/bin/mocha ./app/**/*.spec.js ./app/**/**/*.spec.js ./app/**/**/**/*.spec.js -t 10000 -w",
"coverage-html": "nyc --reporter=html mocha ./app/**/*.spec.js ./app/**/**/*.spec.js ./app/**/**/**/*.spec.js -t 10000"
},
"nyc": {
"include": "app",
"exclude": "**/*.spec.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-routemap": "^1.6.0",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mockery": "^2.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"sinon": "^7.5.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.7.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.1.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0"
}
}