-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "gvc-confirmation-app-backend",
"version": "1.0.0",
"description": "backend codebase for gvc confirmation app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development nodemon index.ts",
"start-prod": "NODE_ENV=production nodemon index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashaytiwari/gvc-confirmation-app-backend.git"
},
"author": "Ashay Tiwari",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemon": "^1.19.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"glob": "^10.3.10",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.2.0",
"nodemon": "^3.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.2",
"winston": "^3.11.0"
}
}