-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "typescript-micro-graphql-template",
"version": "1.0.0",
"description": "TypeScript + Micro + Graphql(Apollo-server) template",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "micro-dev",
"predev": "npm run build",
"start": "micro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnwook/typescript-micro-graphql-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnwook/typescript-micro-graphql-template/issues"
},
"homepage": "https://github.com/johnwook/typescript-micro-graphql-template#readme",
"dependencies": {
"@types/graphql": "^0.12.4",
"@types/micro": "^7.3.1",
"@types/microrouter": "^2.2.1",
"@types/node": "^9.4.7",
"apollo-server-micro": "^1.3.2",
"graphql": "^0.13.1",
"graphql-import": "^0.4.5",
"graphql-tools": "^2.21.0",
"micro": "^9.1.0",
"micro-dev": "^2.2.0",
"microrouter": "^3.1.1",
"tslib": "^1.9.0",
"typescript": "^2.7.2"
},
"devDependencies": {
"prettier": "^1.11.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0"
}
}