-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "techblog",
"repository": {
"type": "git",
"url": "https://github.com/sinmrinal/techblog.git"
},
"author": "Mrinal Singh",
"license": "ISC",
"scripts": {
"start": "nodemon src/server.ts",
"test": "jest",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bson": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^3.6.4",
"morgan": "^1.10.0",
"ts-node": "^9.1.1",
"tslog": "^3.2.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.9",
"@types/morgan": "^1.9.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"errorhandler": "^1.5.1",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.0"
}
}