-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "tanger-med-tech",
"version": "0.1.0",
"main": "app.js",
"author": "Ay.ELMAHDAOUI",
"license": "MIT",
"scripts": {
"dev": "nodemon app.ts",
"build": "tsc"
},
"_moduleAliases": {
"@controllers": "controllers",
"@routes": "routes",
"@repos": "repos",
"@models": "models",
"@middleware": "middleware"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.2.0"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0-alpha.5",
"@tsconfig/node16": "^1.0.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose-seeder": "^1.2.6",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"envfile": "^6.17.0",
"eslint": "^8.8.0",
"inquirer": "^8.2.0",
"mongoose-seeder": "^1.2.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}