-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "backend-assessment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn ./src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcquinche/backend-assessment.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcquinche/backend-assessment/issues"
},
"homepage": "https://github.com/dcquinche/backend-assessment#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"morgan": "^1.10.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.16",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0"
}
}