-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
54
55
56
57
58
59
{
"name": "dlvr",
"version": "1.0.0",
"description": "Backend Application for DLVR Assessment",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"test": "cross-env NODE_ENV=test jest",
"start": "cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development ts-node-dev --files src/server.ts",
"typecheck": "tsc --noEmit && echo Type Checks successfuly completed!",
"lint": "eslint \"src/**/*.{ts,js}\" --fix && echo Lint Checks successfully completed!",
"format": "prettier --write '**/*.{ts,js,json,md,yaml}' && echo Prettier Format successfully completed!"
},
"keywords": [],
"author": "Prudent Bird",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"http-status": "1.7.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb-memory-server": "^2.3.0",
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/tests/setup.ts"
]
},
"packageManager": "pnpm@9.14.4"
}