forked from stargate/stargate-mongoose-sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (32 loc) · 818 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
{
"name": "photography-site",
"version": "1.0.0",
"description": "demo app for stargate-mongoose",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "env NODE_ENV=development node ./server/models/seed",
"start": "nodemon app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"mongoose": "^7.4.0",
"python-shell": "^5.0.0",
"stargate-mongoose": "0.2.0-ALPHA-5"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}