-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "project-blogwalk",
"version": "1.0.0",
"description": "blog api",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/src/app.js",
"prettify": "npx prettier --write . -y",
"build": "tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.27.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.1",
"multer": "^1.4.4",
"multer-storage-cloudinary": "^4.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.12",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}