-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
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": "arview-api",
"version": "1.0.0",
"description": "This project is for the GraphQL API for the Social AR project for Software Architecture. It is responsible for implementing the API needed for the various mobile clients.",
"main": "resolvers.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run start-watch",
"start-watch": "nodemon --exec ./node_modules/.bin/ts-node -- ./server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chibbs96/ARView-API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chibbs96/ARView-API/issues"
},
"homepage": "https://github.com/chibbs96/ARView-API#readme",
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/cors": "^2.8.3",
"@types/express": "^4.11.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.12.3",
"graphql-errors": "^2.1.0",
"graphql-server-express": "^1.3.2",
"graphql-tools": "^2.18.0",
"neo4j-driver": "^1.5.3",
"neo4j-graphql-js": "^0.1.8",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/node": "^9.3.0",
"nodemon": "^1.14.11",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
}
}