-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "y",
"version": "1.0.0",
"description": "A repo to show example uses from GraphQL and DDD",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Turbiani/graphql-ddd.git"
},
"keywords": [
"graphql;",
"nodejs;",
"javascript;",
"ddd"
],
"author": "Turbiani",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turbiani/graphql-ddd/issues"
},
"homepage": "https://github.com/Turbiani/graphql-ddd#readme",
"dependencies": {
"apollo-server-express": "^2.16.1",
"express": "^4.17.1",
"graphql-depth-limit": "^1.1.0",
"mongoose": "^5.10.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0"
}
}