-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "home-service-provider",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"start:client": "cd client && npm start",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"pretty": "prettier --write \"**/*.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-react": "^7.34.1",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"react-ga": "^3.3.1"
},
"engines": {
"node": "v20.11.1",
"npm": "10.2.4"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.2.5"
}
}