-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 960 Bytes
/
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
{
"name": "expresscommerce",
"version": "1.0.0",
"description": "The backend of the ecommerce app built with Express.js, TypeScript, and PostgreSQL",
"main": "build/app.js",
"scripts": {
"start": "node build/app.js",
"dev": "nodemon src/app.ts",
"build": "ts-node src/build.ts && tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"debug": "^2.6.9",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"fs-extra": "^11.1.1",
"http-errors": "^1.6.3",
"jade": "^1.11.0",
"morgan": "^1.9.1",
"nodemon": "^3.0.1",
"pg": "^8.11.3",
"pg-pool": "^3.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/express": "^4.17.18",
"@types/fs-extra": "^11.0.2",
"@types/morgan": "^1.9.6",
"@types/node": "^20.8.0",
"@types/pg-pool": "^2.0.4"
}
}