-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "mercerie-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepare": "rm -rf dist && pnpm run build",
"dev": "pnpm prepare && concurrently \"tsc -w\" \"nodemon -q dist/index.js\""
},
"type": "commonjs",
"author": "medaminefh",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"handlebars": "^4.7.8",
"helmet": "^5.1.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.12.6",
"morgan": "^1.10.0",
"nodemailer": "^6.9.9",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.6.4",
"@types/nodemailer": "^6.4.14",
"concurrently": "^7.3.0",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
}
}