-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.67 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
{
"name": "neo4j-graphql-workspace",
"version": "1.0.0",
"description": "A project template for progressive development of Neo4j GraphQL schemas.",
"author": "Michael D Graham",
"license": "MIT",
"scripts": {
"start:neo4j-graphql-js": "cross-env DEBUG=neo4j-graphql-js ./node_modules/.bin/nodemon --watch neo4j-graphql-js/schema --ext js,graphql --exec babel-node neo4j-graphql-js/server.js",
"print:neo4j-graphql-js": "./node_modules/.bin/gql print neo4j-graphql-js/augmented-schema.js",
"start:neo4j-graphql": "cross-env DEBUG=neo4j-graphql-js ./node_modules/.bin/nodemon --watch neo4j-graphql/schema --ext js,graphql --exec babel-node neo4j-graphql/server.js",
"print:neo4j-graphql": "./node_modules/.bin/gql print neo4j-graphql/augmented-schema.js"
},
"dependencies": {
"@graphql-workspaces/cli": "^1.0.11",
"@graphql-workspaces/load": "^1.0.13",
"@neo4j/graphql": "^1.0.0-alpha.6",
"apollo-server-express": "^2.22.2",
"cypher-tag": "^1.0.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"neo4j-driver": "^4.2.3",
"neo4j-graphql-js": "^2.19.2",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.2",
"babel-plugin-auto-import": "^1.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"shx": "^0.3.2"
}
}