forked from saisatwik99/Cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint --ext .js .",
"fixlint": "eslint --fix --ext .js ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@hapi/joi": "^17.1.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"connect-mongodb-session": "^3.0.0",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"got": "^9.6.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongodb": "^4.0.1",
"morgan": "^1.10.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12"
},
"type": "module"
}