-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 981 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
41
42
{
"name": "apinasa",
"version": "1.0.0",
"description": "Backend Service Cohort3 Team Cesar Pedraza",
"main": "index.js",
"scripts": {
"dev": "nodemon -e js,graphql index",
"start": "pm2 start index.js",
"restart": "pm2 restart index.js",
"stop": "pm2 stop index.js",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"mongo",
"graphql",
"backend",
"node"
],
"author": "Jairo Salazar",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-graphql": "0.9.0",
"graphql": "15.1.0",
"graphql-add-middleware": "^0.3.7",
"graphql-tools": "6.0.10",
"helmet": "3.23.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "3.5.9",
"mongoose": "5.9.19"
},
"devDependencies": {
"nodemon": "2.0.4",
"standard": "14.3.4"
}
}