forked from neo4j/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "neo-place",
"version": "0.1.3",
"private": true,
"description": "Subscriptions example",
"engines": {
"node": "16.x"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"scripts": {
"start": "node server.js",
"start:dev": "npm run clean && concurrently \"parcel client/index.html client/qr.html\" \"node server.js\"",
"build": "npm run clean && parcel build client/index.html client/qr.html",
"clean": "rimraf dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j/graphql.git"
},
"keywords": [
"place",
"neo4j",
"graph",
"subscriptions",
"real-time"
],
"author": "Neo4j Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/neo4j/graphql/issues"
},
"homepage": "https://github.com/neo4j/graphql#readme",
"dependencies": {
"@apollo/server": "^4.7.0",
"@neo4j/graphql": "^4.0.0",
"@neo4j/graphql-amqp-subscriptions-engine": "^1.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"neo4j-driver": "^5.8.0",
"parcel": "^2.8.0",
"rimraf": "^5.0.0",
"urql": "^4.0.0",
"wonka": "^6.1.1",
"ws": "^8.11.0"
},
"devDependencies": {
"concurrently": "8.2.1",
"parcel": "2.9.3"
}
}