This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
67
68
69
{
"name": "ngme",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "nx lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"serve:api:gateway": "ts-node -r tsconfig-paths/register apps/api/gateway/src/main.ts",
"serve:service:reviews": "ts-node -r tsconfig-paths/register apps/services/reviews/src/main.ts",
"serve:service:accounts": "ts-node -r tsconfig-paths/register apps/services/accounts/src/main.ts"
},
"private": true,
"dependencies": {
"@nestjs/common": "^6.2.4",
"@nestjs/core": "^6.2.4",
"@nestjs/platform-express": "^6.2.4",
"reflect-metadata": "^0.1.12",
"@apollo/federation": "^0.6.4",
"@apollo/gateway": "^0.6.6",
"@nestjs/graphql": "^6.2.4",
"apollo-server-express": "^2.6.3",
"graphql": "^14.3.1",
"graphql-tools": "^4.0.4",
"prisma-binding": "^2.3.13",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@nrwl/node": "8.1.2",
"@nestjs/schematics": "^6.3.0",
"@nestjs/testing": "^6.2.4",
"@nrwl/nest": "8.1.2",
"@angular/cli": "8.0.0",
"@nrwl/jest": "8.1.2",
"@nrwl/workspace": "8.1.2",
"@types/graphql": "^14.2.1",
"@types/jest": "24.0.9",
"@types/node": "~8.9.4",
"dotenv": "6.2.0",
"graphql-cli": "^3.0.11",
"jest": "24.1.0",
"nps": "^5.9.5",
"prettier": "1.16.4",
"ts-jest": "24.0.0",
"ts-node": "~7.0.0",
"tsconfig-paths": "^3.8.0",
"tslint": "~5.11.0",
"typescript": "~3.4.5"
}
}