-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.11 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
{
"name": "e-buy",
"version": "1.0.0",
"description": "E-Commerce Application",
"engines": {
"node": "^20"
},
"main": "server.js",
"scripts": {
"build": "rimraf build && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add build",
"dev": "nodemon ./build/server.js",
"start": "NODE_ENV=production node ./build/server.js",
"lint": "eslint src/**/*.ts "
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [
"e-commerce"
],
"author": "Ibrahim Ahmed",
"license": "GPL-3.0-only",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"pug": "^3.0.3",
"sanitize-html": "^2.13.0",
"sharp": "^0.33.4",
"stripe": "^15.10.0",
"ts-node": "^10.9.2",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.2",
"@types/nodemailer": "^6.4.15",
"@types/pug": "^2.0.10",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.3",
"pre-commit": "^1.2.2",
"prettier": "^3.3.1",
"rimraf": "^5.0.7"
}
}