-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.86 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
63
64
65
66
67
68
{
"name": "userattendancetracker",
"version": "1.0.0",
"description": "## Core funcionalities Draft",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haelmj/userTracker-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/haelmj/userTracker-backend/issues"
},
"homepage": "https://github.com/haelmj/userTracker-backend#readme",
"dependencies": {
"bcrypt": "5.0.1",
"body-parser": "1.19.1",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"envalid": "^7.2.2",
"express": "^4.17.2",
"express-session": "1.17.1",
"helmet": "^5.0.2",
"jsonwebtoken": "8.5.1",
"lusca": "1.6.1",
"module-alias": "^2.2.2",
"mongodb": "^4.3.0",
"mongoose": "^6.1.9",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@types/bcrypt": "5.0.0",
"@types/body-parser": "1.19.0",
"@types/express-session": "1.17.3",
"@types/lusca": "1.6.2",
"@types/mongodb": "3.6.5",
"@types/nodemailer": "6.4.0",
"@types/jsonwebtoken": "8.5.8",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"moduleAliases": {
"@/middlewares/": "dist/middlewares/",
"@/resources/": "dist/resources/",
"@/utils/": "dist/utils/"
}
}