-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.86 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
61
62
63
64
65
66
{
"name": "todo-api",
"version": "0.1.0",
"description": "The API back end for Todo List",
"author": "Dzung Nguyen <dzungnguyen179@gmail.com> (dzungnguyen179@gmail.com)",
"contributors": [
"Dzung Nguyen <dzungnguyen179@gmail.com> (dzungnguyen179@gmail.com)"
],
"scripts": {
"start": "./.npm-scripts/prod.sh",
"dev": "./.npm-scripts/watch.sh",
"serve": "node dist/server.js",
"build": "tsc",
"seed": "./.npm-scripts/seed.sh"
},
"keywords": [
"typescript",
"graphql",
"boilerplate",
"postgres",
"apollo",
"apollo-server"
],
"dependencies": {
"apollo-server-express": "^2.5.0",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"dotenv": "^7.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"graphql": "^14.3.1",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.4",
"graphql-type-json": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"pg": "^7.9.0",
"typescript": "^3.4.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/pg": "^7.4.14",
"@types/winston": "^2.4.4",
"nodemon": "1.17.5",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"tslint": "^5.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/davidnguyen179/typescript-graphql-postgres-boilerplate"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidnguyen179/typescript-graphql-postgres-boilerplate/issues"
},
"homepage": "https://github.com/davidnguyen179/typescript-graphql-postgres-boilerplate/blob/master/README.md"
}