-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "oztest",
"version": "0.0.1",
"description": "DevOZ - Tech test",
"main": "server.js",
"scripts": {
"start:dev": "nodemon --ext ts --exec ts-node src/server.ts",
"test": "mocha --require ts-node/register ./test/**/*.spec.ts --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@typegoose/typegoose": "^11.5.0",
"axios": "^1.8.2",
"chai": "^4.3.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"routing-controllers": "^0.11.2",
"typedi": "^0.10.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/express": "^4.17.18",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.0",
"@types/pino": "^7.0.5",
"@types/reflect-metadata": "^0.1.0",
"@types/sinon": "^10.0.17",
"@types/supertest": "^2.0.13",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "3.5.3",
"sinon": "^16.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.26.1"
}
}