-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "sce-backend",
"version": "1.0.0",
"description": "contains all the APIs used by the SCE website",
"main": "",
"scripts": {
"dev": "nodemon devServer.js",
"create-user": "node ./util/CreateUserScript.js",
"generate-token": "node ./util/GenerateTokenScript.js",
"main_endpoints": "nodemon main_endpoints/server.js",
"lint": "eslint .",
"cloud_api": "nodemon cloud_api/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SCE-Development/Core-v4.git"
},
"keywords": [
"node",
"gmail",
"mongodb",
"express"
],
"author": "SCE Development Team Officers",
"license": "MIT",
"bugs": {
"url": "https://github.com/SCE-Development/Core-v4/issues"
},
"homepage": "https://github.com/SCE-Development/Core-v4#readme",
"dependencies": {
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"express": "^4.22.1",
"form-data": "^4.0.0",
"googleapis": "^52.1.0",
"mongoose": "^5.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.4.11",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.7",
"eslint": "^7.32.0"
}
}