-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 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
43
44
45
46
47
48
{
"name": "ecommerce-backend-nodejs",
"version": "1.0.0",
"description": "Ecommerce Backend NodeJS",
"main": "main.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsup",
"start": "node dist/main.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/morgan": "^1.9.10",
"@types/node": "^24.9.1",
"compression": "^1.8.1",
"eslint": "^9.38.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"helmet": "^8.1.0",
"mongoose": "^8.19.2",
"morgan": "^1.10.1",
"prettier": "^3.6.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}