-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "GraphQL Server Implementation using Express",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node --delay 2500ms src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"apollo-server": "^2.7.2",
"apollo-server-express": "^2.7.2",
"express": "^4.17.1",
"graphql": "^14.4.2",
"kill-port": "^1.5.1",
"lodash": "^4.17.15",
"slugify": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"kexec": "^3.0.0",
"nodemon": "^1.19.1"
}
}