-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "store-manager-api",
"version": "1.0.0",
"description": "store-manager-api",
"main": "server.js",
"scripts": {
"build": "tsc && resolve-tspaths",
"start": "npm run build && node dist/server",
"dev": "ts-node-dev --respawn --pretty --transpile-only ./src/server",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"keywords": [
"nodejs",
"typescript"
],
"author": "oluwatosin akande",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.29.4",
"mongoose": "^8.0.0",
"mongoose-paginate-v2": "^1.7.4",
"morgan": "^1.10.0",
"resolve-tspaths": "^0.8.17",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/bcrypt": "^5.0.1",
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.20",
"@types/express-validator": "^3.0.0",
"@types/jest": "^29.5.7",
"@types/jsonwebtoken": "^9.0.4",
"@types/module-alias": "^2.0.3",
"@types/mongoose": "^5.11.97",
"@types/mongoose-paginate-v2": "^1.6.5",
"@types/morgan": "^1.9.7",
"@types/node": "^20.8.10",
"@types/supertest": "^2.0.15",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0"
},
"_moduleAliases": {
"@": "./src"
}
}