forked from rajinwonderland/nest-graphql-newsapi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "nest-graphql-example",
"version": "1.0.0",
"description": "A graphql wrapper for the [newsapi](https://newsapi.org) using NestJS",
"author": "rajinwonderland",
"license": "MIT",
"scripts": {
"dev": "ts-node src/main",
"prestart:prod": "tsc",
"start": "node dist/main.js",
"build": "rimraf dist && tsc -p tsconfig.build.json"
},
"dependencies": {
"@nestjs/common": "5.6.2",
"@nestjs/core": "^5.4.0",
"@nestjs/graphql": "5.5.1",
"ansi-colors": "^3.2.3",
"apollo-server-express": "2.3.1",
"class-transformer": "0.2.0",
"class-validator": "^0.8.1",
"dotenv": "^6.2.0",
"graphql": "14.1.1",
"graphql-tools": "4.0.3",
"joi": "^14.3.1",
"nestjs-config": "^1.2.9",
"newsapi": "2.4.0",
"opn": "^5.4.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.3",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/ansi-colors": "^3.2.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/graphql": "^14.0.5",
"@types/joi": "^14.3.0",
"@types/node": "^10.12.18",
"@types/supertest": "^2.0.7",
"now": "^13.1.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "5.12.1",
"typescript": "^3.2.4"
},
"keywords": [
"nestjs",
"graphql",
"newsapi"
]
}