-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 957 Bytes
/
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
{
"name": "buzzwisecloudcomputing",
"version": "1.0.0",
"description": "Buzz Wise BackEnd App Cloud Computing Services",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "NODE_ENV=production node app.js",
"test": "mocha ./src/tests/test.js --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/BuzzWiseTeam/BuzzWiseCloudComputing"
},
"engines": {
"node": "18"
},
"author": "Billy Franscois",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^6.10.1",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"firebase": "^7.24.0",
"firebase-admin": "^11.9.0",
"formidable-serverless": "^1.1.1",
"helmet": "^7.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.22"
}
}