-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.54 KB
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
{
"name": "vit-hiring-2023-phase-1-guptaharsh13",
"version": "1.0.0",
"description": "[](https://classroom.github.com/online_ide?assignment_repo_id=10357716&assignment_repo_type=AssignmentRepo) <!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 --> <a name=\"readme-top\"></a> <!-- *** Thanks for checking out the Best-README-Template. If you have a suggestion *** that would make this better, please fork the repo and create a pull request *** or simply open an issue with the tag \"enhancement\". *** Don't forget to give the project a star! *** Thanks again! Now go create something AMAZING! :D -->",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc && node dist/utils/generateKeypair.js",
"prestart": "npm run build",
"start": "node dist/index.js",
"auth": "node dist/scripts/generateTokens.js",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\" ",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"check-types": "npx tsc --pretty --noEmit",
"check-format": "npx prettier --check .",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-submissions/vit-hiring-2023-phase-1-guptaharsh13.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dyte-submissions/vit-hiring-2023-phase-1-guptaharsh13/issues"
},
"homepage": "https://github.com/dyte-submissions/vit-hiring-2023-phase-1-guptaharsh13#readme",
"dependencies": {
"axios": "^1.3.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.9.0",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.5",
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"rimraf": "^4.2.0",
"typescript": "^4.9.5"
}
}