-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 908 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 908 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": "graph-computer",
"version": "0.0.0",
"description": "Client implementation of the Graph Protocol.",
"author": "CryptoGraph",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "tsc --skipLibCheck",
"dev": "nodemon"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/jest": "^23.0.0",
"@types/node": "^10.3.0",
"jest": "^23.1.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"ts-node": "^6.1.0",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.1",
"typescript-tooling": "^2.0.7"
}
}