-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.21 KB
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
{
"name": "ecommserver",
"version": "0.0.0",
"main": "src/index.js",
"type": "module",
"scripts": {
"clean": "rimraf build",
"build": "bun run clean && tsc",
"build:node": "npm run clean && tsc",
"dev": "bun run --watch ./src/index.ts",
"start": "node --env-file=.env build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.0",
"express-session": "^1.18.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongooat": "^2.2.18",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.4",
"@types/nodemailer": "^6.4.16",
"@types/passport-google-oauth20": "^2.0.16",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}