-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 954 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
{
"name": "eventify",
"version": "1.0.0",
"description": "Eventify is an event booking full stack application that allows users to create/book events. This project is built on an interesting tech stack involving Node.js + Express, React.js, MongoDB and finally GraphQL.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmruthPillai/Eventify.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/AmruthPillai/Eventify/issues"
},
"homepage": "https://github.com/AmruthPillai/Eventify#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.1.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.5"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}