-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
43
44
45
46
47
48
49
50
51
52
{
"name": "nodejs-project",
"version": "1.0.0",
"description": "Trzeci projekt tworzony podczas CodersCamp2021, wykorzystujacy Node.js",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint --fix",
"test": "mocha"
},
"engines": {
"node": "14.17.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcinnnnb/CodersCamp2021-Node-Project-eWolontariat.git"
},
"keywords": [
"node.js",
"CodersCamp2021",
"REST",
"API"
],
"author": "Agnieszka Bury, Agnieszka Kapelańczyk, Marta Pejkowska, Marcin Barszcz",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcinnnnb/CodersCamp2021-Node-Project-eWolontariat/issues"
},
"homepage": "https://github.com/marcinnnnb/CodersCamp2021-Node-Project-eWolontariat#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "4.17.3",
"hapi": "^18.1.0",
"helmet": "5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.14",
"mongoose-autopopulate": "^0.16.0",
"morgan": "1.10.0",
"multer": "^1.4.4",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"eslint": "8.9.0",
"mocha": "9.2.1",
"nodemon": "2.0.15",
"supertest": "6.2.2"
}
}