-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "node-api-starter",
"version": "0.0.2",
"description": "NodeJS API Starter with MongoDB",
"main": "index.js",
"repository": "https://github.com/shubhambattoo/node-api-starter.git",
"author": "shubhambattoo",
"license": "MIT",
"private": true,
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"prepare": "husky install"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"html-to-text": "^8.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^8.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.6.3",
"pug": "^3.0.2",
"sharp": "^0.32.6",
"speakeasy": "^2.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3"
},
"engines": {
"node": ">=14"
}
}