-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 942 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
36
37
38
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/app",
"dev": "NODE_ENV=development nodemon ./bin/www"
},
"dependencies": {
"bcrypt": "^5.0.1",
"config": "^3.3.6",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^9.0.2",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.8",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"slugify": "^1.5.3",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/http-errors": "^1.8.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.10.5",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/validator": "^13.1.3",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
}
}