-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 950 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 950 Bytes
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
{
"name": "snapshare",
"version": "1.0.0",
"description": "A media sharing application that allows users to snap and share it with friends instanly.",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Node.js",
"Express",
"REST",
"SocialMedia",
"SnapShare",
"MediaShare"
],
"author": "utsabk",
"license": "GPL-3.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"helmet": "^4.4.1",
"jquery": "^3.6.0",
"jquery-validation": "^1.19.3",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}