-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "e-commerce",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"dev": "ts-node-dev src/app.ts",
"start": "node dist/app.js",
"lint": "npx eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express-fileupload": "^1.1.7",
"bcrypt": "^5.0.1",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"ioredis": "^4.27.9",
"kafkajs": "^1.15.0",
"mime": "^1.6.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.25",
"nodemailer": "^6.6.3",
"npm": "^8.0.0",
"paypal-rest-sdk": "^1.8.1",
"pg": "^8.7.1",
"stripe": "^8.183.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"util": "^0.12.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/connect-redis": "^0.0.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.1",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"ts-node-dev": "^1.1.8",
"winston": "^3.3.3"
}
}