-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 739 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 739 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
{
"name": "api",
"version": "1.0.0",
"description": "Api para proyecto Cine",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"dev": "nodemon -e js,graphql api/index.js",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alejandro Vivanco",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs": "0.0.1-security",
"graphql": "^15.0.0",
"graphql-tools": "^5.0.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"nodemon": "^2.0.3",
"standard": "^14.3.3"
},
"engines": {
"node": "10.x"
}
}