-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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": "taskpro-api",
"version": "0.0.1",
"description": "TaskPro backend",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node ./server.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./server.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --fix --ext .js"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.37.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"elasticemail-webapiclient": "^2.0.14",
"express": "^4.18.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.22"
}
}