-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "mammates-be",
"version": "1.0.0",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MamMates/mammates-be.git"
},
"main": "app.js",
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"nodemon": "^3.0.2"
},
"bugs": {
"url": "https://github.com/MamMates/mammates-be/issues"
},
"description": "MamMates backend service",
"homepage": "https://github.com/MamMates/mammates-be#readme",
"license": "ISC",
"scripts": {
"start": "node src/app.js",
"dev": "bun src/app.js",
"lint": "eslint ./",
"mon": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.2.0",
"@google-cloud/storage": "^7.7.0",
"@googlemaps/google-maps-services-js": "^3.3.41",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"node-fetch": "^3.3.2",
"sequelize": "^6.35.1",
"uuid": "^9.0.1"
}
}