-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "country-city-api",
"version": "0.0.0",
"private": true,
"scripts": {
"debug": "DEBUG=country-city-api:* npm start",
"watch": "nodemon npm start",
"start": "node ./bin/www",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"integration:test": "mocha --timeout 50000 --exit ./test/tests.js",
"report": "nyc report --reporter=lcov --reporter=text --reporter=html",
"test": "mocha ./test/tests.js --timeout 50000 --exit",
"make:commit": "./node_modules/.bin/cz",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"apicache": "^1.6.3",
"axios": "^0.28.0",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.7",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.21.1",
"express-rate-limit": "^6.3.0",
"hbs": "^4.1.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/register": "^7.11.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"commitizen": "^4.3.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji": "^1.2.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"istanbul": "^0.4.5",
"locus": "^2.0.4",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
}
}