forked from ozmap/technical-assessment-int_dm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "oztest",
"version": "0.0.1",
"description": "DevOZ - Tech test",
"main": "index.js",
"engines": {
"node": "v20.12.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "ts-node src/index.ts | npx pino-pretty",
"build": "tsc",
"start": "node dist/src/index.js | npx pino-pretty",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^29.5.12",
"@types/mongoose": "^5.11.97",
"axios": "^1.6.8",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jest": "^29.7.0",
"mongoose": "^8.3.1",
"pino": "^8.20.0",
"pino-pretty": "^11.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.4",
"uuidv7": "^0.6.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"prettier": "^3.2.5",
"typescript-eslint": "^7.6.0"
}
}