-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "movieapi",
"version": "1.0.0",
"description": "Movie API with Graphql",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec ./node_modules/.bin/babel-node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ldh3907/study-graphql-backend-nomadcoder-movie-api.git"
},
"keywords": [
"graphql"
],
"author": "Lim Dong Hyun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ldh3907/study-graphql-backend-nomadcoder-movie-api/issues"
},
"homepage": "https://github.com/ldh3907/study-graphql-backend-nomadcoder-movie-api#readme",
"dependencies": {
"axios": "^0.22.0",
"cctx": "^1.0.1",
"error-ex": "git+https://github.com/Qix-/node-error-ex.git",
"graphql-yoga": "^1.18.3",
"node-fetch": "^2.6.5",
"upgrade": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"babel-node": "^0.0.1-security",
"nodemon": "^2.0.13"
}
}