-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "oztest",
"version": "0.0.1",
"description": "DevOZ - Tech test",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.ts",
"test": "mocha --require ts-node/register ./src/**/*.spec.ts --exit",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@typegoose/typegoose": "^11.5.0",
"chai": "^4.3.10",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"geolib": "^3.3.4",
"mongoose": "^7.5.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/express": "^4.17.18",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.0",
"@types/reflect-metadata": "^0.1.0",
"@types/sinon": "^10.0.17",
"@types/supertest": "^2.0.13",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"sinon": "^16.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}