-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "neverland-backend",
"version": "1.0.0",
"description": "Server side for Neverland app",
"main": "src/index.js",
"scripts": {
"lint:fix": "eslint --fix .",
"test": "jest --watchAll --detectOpenHandles --runInBand",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"populate": "node src/utilities/populateDB.js",
"drop": "node src/utilities/dropDB.js"
},
"keywords": [
"example",
"heroku"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NEVERLAND-repository/Neverland-Backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NEVERLAND-repository/Neverland-Backend/issues"
},
"homepage": "https://github.com/NEVERLAND-repository/Neverland-Backend#readme",
"dependencies": {
"@imranbarbhuiya/mongoose-fuzzy-searching": "^3.0.5",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.8",
"mongoose-fuzzy-searching": "^2.0.2",
"morgan": "^1.10.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.2"
},
"engines": {
"node": "16.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
]
}
}