-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 997 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
{
"name": "blog-node.js-express-mongodb",
"version": "1.0.0",
"description": "A Blog APIs service for posting content",
"main": "app.js",
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"multer": "^1.4.3",
"nodemon": "^2.0.14",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/uuid": "^8.3.1",
"jest": "^27.3.1",
"typescript": "^4.4.4"
},
"scripts": {
"dev": "NODE_ENV=development nodemon ./src/app.ts",
"start": "NODE_ENV=production rm -rf dist && npm run build && nodemon ./dist/app.js",
"test": "NODE_ENV=test jest",
"build": "tsc"
},
"author": "Mohammad Hadi Karamzadeh",
"license": "GPL-3.0-or-later"
}