-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.49 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
54
55
56
57
58
59
{
"name": "projekt-4",
"version": "1.0.0",
"description": "Projekt aplikacji dla schroniska dla zwierząt",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"test:PaymentEndpoints": "jest -- test/paymentEndpoint.test.js",
"test users": "jest -- test/usersEndpoint.test.js"
},
"engines": {
"node": "12.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piotr-bocian/Projekt-4.git"
},
"keywords": [
"node.js",
"REST",
"API",
"CodersCamp2021",
"Schronisko dla zwierząt"
],
"author": "Piotr Bocian, Klaudia Wojciechowska, Daria Torz, Jan Eliasz, Adam Połynka, Łukasz Żurawski, Szymon Suchodolski",
"license": "ISC",
"bugs": {
"url": "https://github.com/piotr-bocian/Projekt-4/issues"
},
"homepage": "https://github.com/piotr-bocian/Projekt-4#readme",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie": "^0.4.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"joi-mongoose-objectid": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.17",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}