-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "nodejs-graphql-server",
"version": "1.0.0",
"description": "GraphQL Server Boilerplate for Node.js",
"main": "src/index.js",
"scripts": {
"start": "backpack",
"build": "backpack build",
"test": "mocha --require @babel/polyfill --require @babel/register './test/**/*.spec.js'"
},
"dependencies": {
"apollo-server-express": "^2.9.15",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1"
},
"homepage": "https://github.com/nurettintopal/nodejs-graphql-server#readme",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.7.7",
"backpack-core": "^0.8.3",
"mocha": "^10.3.0",
"nodemon": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nurettintopal/nodejs-graphql-server.git"
},
"keywords": [
"graphql",
"graphql-server",
"graphql-apollo",
"nodejs"
],
"author": "Nurettin Topal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nurettintopal/nodejs-graphql-server/issues"
},
"engines": {
"node": "18.x",
"npm": "10.x"
}
}