-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "demo-GraphQl-ParisTypescript",
"version": "1.0.0",
"description": "Demo GraphQl + TypeScript",
"scripts": {
"start": "nodemon ./server.ts --exec ts-node",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/apollo-starter-kit.git"
},
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/apollo-starter-kit/issues"
},
"homepage": "https://github.com/apollostack/apollo-starter-kit#readme",
"dependencies": {
"apollo-server-express": "^1.1.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.1",
"gql-merge": "0.0.6",
"graphql": "^0.11.7",
"graphql-subscriptions": "^0.5.4",
"subscriptions-transport-ws": "^0.9.1"
},
"devDependencies": {
"@playlyfe/gql": "^2.3.2",
"@types/body-parser": "^1.16.5",
"@types/express": "^4.0.37",
"@types/graphql": "^0.11.5",
"@types/node": "^8.0.33",
"nodemon": "^1.12.1"
}
}