forked from neo4j-graphql/neo4j-graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "neo4j-graphql-js",
"version": "2.6.1",
"description": "A GraphQL to Cypher query execution layer for Neo4j. ",
"main": "./dist/index.js",
"scripts": {
"start": "nodemon ./example/apollo-server/movies.js --exec babel-node -e js",
"autogen": "nodemon ./example/autogenerated/autogen.js --exec babel-node -e js",
"start-middleware": "nodemon ./example/apollo-server/movies-middleware.js --exec babel-node -e js",
"start-typedefs": "nodemon ./example/apollo-server/movies-typedefs.js --exec babel-node -e js",
"build": "babel src --presets babel-preset-env --out-dir dist",
"build-with-sourcemaps": "babel src --presets babel-preset-env --out-dir dist --source-maps",
"precommit": "lint-staged",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "nyc --reporter=lcov ava test/cypherTest.js test/augmentSchemaTest.js test/configTest.js test/neo4j-schema/*Test.js --verbose",
"parse-tck": "babel-node test/tck/parseTck.js",
"test-tck": "nyc ava --fail-fast test/filterTest.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test-all": "nyc ava test/*.js test/neo4j-schema/*Test.js --verbose",
"debug": "nodemon ./example/apollo-server/movies.js --exec babel-node --inspect-brk=9229 --nolazy",
"debug-typedefs": "nodemon ./example/apollo-server/movies-typedefs.js --exec babel-node --inspect-brk=9229 --nolazy",
"debug-interface": "nodemon ./example/apollo-server/interfaceError.js --exec babel-node --inspect-brk=9229 --nolazy"
},
"engines": {
"node": ">=8"
},
"author": "William Lyon",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-graphql/neo4j-graphql-js"
},
"devDependencies": {
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-http": "^1.5.14",
"apollo-server": "^2.4.8",
"apollo-server-express": "2.2.6",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"node-fetch": "^2.3.0",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"prettier": "^1.17.0",
"sinon": "^7.3.1"
},
"dependencies": {
"graphql": "^14.2.1",
"graphql-auth-directives": "^2.1.0",
"lodash": "^4.17.11",
"neo4j-driver": "^1.7.3"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}