-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 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
53
54
{
"name": "pet-adoption-backend",
"version": "1.0.0",
"description": "",
"main": "dist/src/main/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/src/main/index.js",
"test": "jest --passWithNoTests --runInBand --forceExit -c jest.config.js",
"test-unit": "jest --passWithNoTests -c jest.unit.config.js",
"test-integration": "jest --passWithNoTests --runInBand --forceExit -c jest.integration.config.js",
"test-watch": "jest --passWithNoTests --watch --onlyChanged -c jest.config.js",
"test-coverage": "jest --passWithNoTests --coverage -c jest.unit.config.js"
},
"keywords": [],
"author": "Douglas Volcato",
"license": "ISC",
"dependencies": {
"axios": "^1.6.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@shelf/jest-mongodb": "^4.1.7",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.16",
"@types/dotenv": "^8.2.0",
"@types/email-validator": "^1.0.6",
"@types/express": "^4.17.21",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/mongoose": "^5.11.97",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.7",
"faker": "^5.5.3",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}