forked from Chameleon-company/EVAT-App-BE
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "evat-app-be",
"version": "1.0.0",
"description": "The EVAT Backend is a server-side application supporting the Electric Vehicle Adoption Tool (EVAT). Built with Node.js, Express.js, and MongoDB,",
"main": "server.ts",
"scripts": {
"server": "ts-node-dev server.ts",
"build": "tsc",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^8.5.8",
"@types/long": "^5.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.10",
"@types/node-fetch": "^2.6.12",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.4.1",
"@googlemaps/places": "^2.0.1",
"axios": "^1.8.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"long": "^5.3.2",
"mongoose": "^6.1.7",
"nodemailer": "^6.10.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2"
}
}