-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 790 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 790 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
{
"name": "culinary-graph",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "del-cli .cache",
"compile": "tsc --watch",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutoScheduleJS/culinary-graph.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^14.0.3",
"@types/node": "^10.12.11",
"del-cli": "^1.1.0",
"typescript": "^3.2.1"
},
"dependencies": {
"apollo-server-express": "^2.2.6",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"neo4j-driver": "^1.7.2",
"neo4j-graphql-js": "^2.0.1"
}
}