-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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": "learning-node",
"version": "1.0.0",
"description": "Following an O'Reilly \"The Complete Node.js Bootcamp 2026\" course",
"keywords": [
"Node.js",
"learning"
],
"homepage": "https://github.com/alex-d-bondarev/learning-node#readme",
"bugs": {
"url": "https://github.com/alex-d-bondarev/learning-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-d-bondarev/learning-node.git"
},
"license": "MIT",
"author": "Sasha",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"WARNING: No tests yet\" && exit 1",
"dev_start": "nodemon index.js"
},
"dependencies": {
"dotenv": "17.4.2",
"express": "5.2.1",
"express-jwt": "8.5.1",
"express-validator": "7.3.2",
"i18next": "26.3.4",
"i18next-fs-backend": "2.6.6",
"i18next-http-middleware": "3.9.7",
"jsonwebtoken": "9.0.3",
"jwt-decode": "4.0.0",
"mongodb": "7.4.0",
"mongoose": "9.7.3",
"multer": "2.2.0"
},
"devDependencies": {
"nodemon": "3.1.14"
}
}