-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "blog-api",
"version": "1.0.0",
"main": "src/main.ts",
"repository": ".",
"author": "Kamil Pawlaczyk",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"start": "node ./dist/main.js",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"dev": "nodemon",
"test": "jest"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"emoji-logs": "^1.2.1",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.1.5",
"ms": "^2.1.3",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.8",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/passport-local-mongoose": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.6",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
}
}