-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"name": "stackoverflowclone",
"version": "1.0.0",
"description": "StackOverflow clone with it's main functionalities",
"main": "index.js",
"scripts": {
"start": "nodemon index",
"server": "node index",
"lint-check": "eslint -c .eslintrc.json . --ext .js"
},
"author": "Mayank Aggarwal",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.4.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.2",
"nodemon": "^2.0.15",
"sequelize": "^6.6.4",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2"
}
}