-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
39
40
41
{
"name": "node-typescript-mongodb",
"version": "1.0.0",
"description": "Tech stack with node js, express, type script and mongodb",
"main": "source/server.ts",
"scripts": {
"build": "tsc --build",
"compile": "tsc source/server.ts -w",
"start": "nodemon source/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nagcse42/node-typescript-mongodb.git"
},
"author": "Nagarjuna Paritala",
"license": "ISC",
"bugs": {
"url": "https://github.com/nagcse42/node-typescript-mongodb/issues"
},
"homepage": "https://github.com/nagcse42/node-typescript-mongodb#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.9",
"mongoose": "^5.12.12",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.10.5",
"nodemon": "^2.0.7"
}
}