forked from AxelAlba/Obscura_V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1023 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
39
40
{
"name": "obscura",
"version": "1.0.0",
"description": "social media app for creatives.",
"main": "index.js",
"scripts": {
"debug": "nodemon -r dotenv/config index.js",
"dev": "node -r dotenv/config index.js",
"start": "node index.js"
},
"author": "3 Idiots",
"license": "ISC",
"engines": {
"node": "12.x"
},
"dependencies": {
"@fancyapps/fancybox": "^3.5.7",
"@handlebars/allow-prototype-access": "^1.0.3",
"bcrypt": "^4.0.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"connect-mongoose-session-store": "^2.0.1",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.1",
"express-validator": "^6.4.0",
"gridfs-stream": "^1.1.1",
"jquery": "^3.5.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.6",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.3",
"sessionstore": "^1.3.7"
},
"devDependencies": {
"async": "^3.2.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.2"
}
}