-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.1 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
{
"name": "vaccine-passport-application-prototype",
"version": "1.0.0",
"description": "vaccine application prototype for Polish Government Vaccine Passport management, this is not the actual application that I am currently working on, this is just the prototype of the application and the purpose behind that is to show off my project to the recruiter out there, somewhere... :-)",
"main": "src/app.ts",
"scripts": {
"server:run": "ts-node -r tsconfig-paths/register src/app.ts",
"server:watch": "nodemon --exec ts-node -r tsconfig-paths/register src/app.ts",
"build": "tsc --build && tsc-alias",
"start": "npm run server:run",
"postinstall": "npm run build",
"prepare": "husky install",
"coverage:push": "codecov",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "Muhammad Zourdy",
"engines": {
"node": "16.13.0"
},
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.0",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.10",
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"codecov": "^3.8.3",
"concurrently": "^7.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-fileupload": "^1.2.1",
"googleapis": "^61.0.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9",
"morgan": "^1.10.0",
"node-fetch": "^3.1.0",
"nodemailer": "^6.7.2",
"ts-node": "^10.4.0",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"lint-staged": "13.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}