-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1022 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1022 Bytes
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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "This project is for exercise REST API in Node.js using Express web framework with MongoDB using Typescript",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umarjavedse/node-express-typescript.git"
},
"author": "Umar Javed",
"license": "ISC",
"bugs": {
"url": "https://github.com/umarjavedse/node-express-typescript/issues"
},
"homepage": "https://github.com/umarjavedse/node-express-typescript#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.2"
}
}