-
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) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 967 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": "photohub",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./node_modules/nodemon/bin/nodemon.js ./bin/www"
},
"description": "Photohub is a platform that users can view, share and comment on their photos.",
"keywords": [
"photo",
"nodejs",
"express",
"mongodb"
],
"main": "index.js",
"author": "Qiqi Chen, Ziqing Mao",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Ziqing19/PhotoHub.git"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"express": "^4.16.4",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.1",
"image-type": "^4.1.0",
"mongodb": "^3.6.4",
"morgan": "^1.9.1",
"sharp": "^0.27.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}