-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "travel-guide",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.14.0"
},
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"prepare": "husky",
"lint": "npx eslint ./ --ext .js",
"lint:fix": "eslint ./ --ext .js --fix",
"prettier": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@turf/turf": "^7.0.0",
"axios": "^1.7.2",
"cookie-parser": "^1.4.6",
"debug": "^4.3.5",
"express": "~4.16.1",
"express-validator": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nock": "^13.5.4",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"supertest": "^7.0.0"
}
}