-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 1.09 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": "scoop-backend",
"type": "module",
"version": "1.0.0",
"description": "Scoop",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"dev": "nodemon app.js",
"lint": "eslint -c .eslintrc.json \"./**/*.js\" --ignore-pattern node_modules/,build/ --fix"
},
"author": "Emmann",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cloudinary": "^1.41.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^5.13.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.1",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0"
}
}