-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "techland",
"version": "1.0.0",
"description": "The backend of techland e-commerce app.",
"private": true,
"main": "index.js",
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "Muhammad Sifat Hossain",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"husky": "^8.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"isomorphic-dompurify": "^0.24.0",
"lodash": "^4.17.21",
"mongodb": "^4.12.1",
"zod": "^3.19.1"
}
}