-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
{
"name": "climbers-connect",
"version": "1.0.0",
"description": "",
"main": "dist/server",
"typings": "dist/server",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/server.js",
"start": "node dist/server.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.31.0",
"connect-mongo": "^4.6.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongodb": "^4.9.1",
"mongoose": "^6.5.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/connect-mongo": "^3.1.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.5",
"@types/method-override": "^0.0.32",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.4",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/passport-local-mongoose": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
}
}