-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
38 lines (38 loc) · 988 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
{
"name": "graphql-example",
"version": "1.6.1",
"description": "Intuitive GraphQL Resolver Example - Application example using contextable.js as GraphQL rootValue on steroids.",
"main": "./src/index.js",
"config": {
"env": "development",
"httpHost": "127.0.0.1",
"httpPort": 3000,
"mongoUrl": "mongodb://localhost:27017/test"
},
"scripts": {
"exec": "node --harmony ./scripts/graph-exec",
"print": "node --harmony ./scripts/graph-print",
"start": "node --harmony ./scripts/graph-start",
"test": "node --harmony node_modules/.bin/ava"
},
"ava": {
"files": [
"./tests/*.js",
"./tests/**/*.js"
],
"concurrency": 1,
"failFast": true
},
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"dependencies": {
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"graphql": "^0.8.2",
"mongodb": "^2.2.11",
"rawmodel": "^1.2.0"
},
"devDependencies": {
"ava": "^0.17.0"
}
}