-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 938 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": "be-task-project",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "concurrently \"tsc -w\" \"nodemon dist/app.js\" ",
"build": "tsc",
"update-patch": "npm version patch --no-git-tag-version --force",
"update-minor": "npm version minor --no-git-tag-version --force",
"update-major": "npm version major --no-git-tag-version --force"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.1",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}