forked from Stradivario/gapi-starter-neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 754 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 754 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
30
31
32
33
34
35
36
{
"name": "@gapi/starter-neo4j",
"version": "1.4.44",
"description": "",
"main": "index.js",
"scripts": {
"start": "gapi start --local --lint",
"test": "gapi test --local",
"lint": "echo"
},
"author": "Kristiyan Tachev (Stradivario)",
"license": "MIT",
"dependencies": {
"@gapi/core": "1.4.57",
"neo4j-driver": "^1.7.2",
"neo4j-graphql-js": "^2.4.0"
},
"nodemonConfig": {
"ignore": [
"./src/**/*.spec.ts"
],
"verbose": false,
"exec": "ts-node ./src/main.ts",
"watch": [
"./src/**/*.ts"
],
"events": {
"restart": "sleep 5 && gapi schema introspect"
},
"ext": "ts"
},
"devDependencies": {
"@types/hapi": "^18.0.1",
"typescript": "^3.0.1"
}
}