-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "moria",
"version": "0.1.0",
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hassanelshazly/moria"
},
"engines": {
"node": "14.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"start": "node server",
"build": "cd frontend/ && npm install && npm run build",
"start-backend": "nodemon server/",
"start-frontend": "cd frontend/ && npm start",
"dev": "run-p start-backend start-frontend"
},
"cacheDirectories": [
"node_modules",
"frontend/node_modules"
],
"dependencies": {
"@sendgrid/mail": "^7.4.1",
"apollo-server-express": "^2.19.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.12",
"mongoose-mongodb-errors": "0.0.2",
"passport": "^0.4.1",
"passport-facebook-token": "^4.0.0",
"passport-google-token": "^0.1.2",
"validator": "^13.5.2"
},
"devDependencies": {
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}