-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "apollo-typescript-starter",
"version": "1.0.0",
"description": "Boilerplate project to get up and running with Apollo Server, GraphQL, Typescript and Postgres",
"author": "Kyle Alwyn <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"repository": {
"type": "git",
"url": "git://github.com/kylealwyn/apollo-typescript-starter.git"
},
"keywords": [
"node",
"express",
"graphql",
"typescript",
"apollo",
"apollo-server",
"boilerplate",
"postgres"
],
"scripts": {
"start": "nodemon",
"debug": "nodemon",
"knex": "ts-node ./node_modules/.bin/knex"
},
"dependencies": {
"apollo-server": "^2.1.0",
"apollo-server-express": "^2.1.0",
"body-parser": "^1.18.3",
"connection-string": "^1.0.1",
"core-js": "^2.5.7",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"knex": "^0.15.2",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"pg": "^7.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/knex": "^0.14.26",
"@types/lodash": "^4.14.117",
"@types/morgan": "^1.7.35",
"@types/node": "^10.11.7",
"ava": "^0.25.0",
"nodemon": "^1.18.9",
"prettier": "^1.14.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3"
}
}