-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "api-authentication-service",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:dev": "node --trace-warnings --trace-deprecation 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"
},
"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",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1",
"swagger-ui-express": "^4.3.0",
"winston": "^3.7.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.4",
"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"
}
}