-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 4.11 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "luomus",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx:postinstall": "node ./decorate-angular-cli.js && ngcc",
"nx": "nx",
"start:store-api": "nx serve store-api",
"start:store-worker": "nx serve store-worker",
"build": "ng build",
"test": "ng test",
"test:store-api": "strest apps/store-api/test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"store:cli": "ts-node --project=./apps/store-cli/tsconfig.app.json -r tsconfig-paths/register ./apps/store-cli/src/cli.ts",
"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": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"build:migrate:postgres": "tsc ./tools/database/migrations/postgres/*.ts --outDir tools/database/migrations/postgres/",
"build:migrate:oracle": "tsc ./tools/database/migrations/oracle/*.ts --outDir tools/database/migrations/oracle/",
"help": "nx help"
},
"private": true,
"dependencies": {
"@apollo/client": "^3.10.3",
"@elastic/elasticsearch": "7.17.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/elasticsearch": "^10.0.1",
"@nestjs/graphql": "^12.1.1",
"@nestjs/microservices": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@nestjs/swagger": "^7.3.1",
"@nestjs/terminus": "^10.2.3",
"@nestjs/typeorm": "^10.0.2",
"ajv": "^8.13.0",
"ajv-formats": "^2.1.1",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"apollo-server-express": "^3.13.0",
"axios": "^1.6.8",
"bcrypt": "^5.0.1",
"cache-manager": "^4.1.0",
"commander": "^7.2.0",
"fast-json-patch": "^3.0.0-1",
"graphql": "^16.8.1",
"graphql-http": "^1.22.1",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.1",
"ioredis": "^5.4.1",
"isomorphic-fetch": "^3.0.0",
"json-schema-to-typescript": "^10.1.3",
"jsonld": "^4.0.1",
"nestjs-console": "^9.0.0",
"openapi-to-graphql": "^3.0.7",
"ora": "^5.4.1",
"oracledb": "^6.5.0",
"rdflib": "^2.1.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.1",
"solid-auth-cli": "^1.0.15",
"solid-auth-client": "^2.5.5",
"swagger-ui-express": "^4.1.6",
"tslib": "^2.6.2",
"typeorm": "^0.3.20",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@nrwl/cli": "14.8.8",
"@nrwl/cypress": "14.8.8",
"@nrwl/eslint-plugin-nx": "14.8.8",
"@nrwl/jest": "14.8.8",
"@nrwl/nest": "14.8.8",
"@nrwl/node": "14.8.8",
"@nrwl/workspace": "14.8.8",
"@strest/cli": "^2.5.1",
"@types/bcrypt": "^3.0.0",
"@types/cache-manager": "^4.0.6",
"@types/express": "^4.17.11",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "27.4.1",
"@types/json-schema": "^7.0.7",
"@types/jsonld": "^1.5.5",
"@types/node": "^18.19.33",
"@types/rdflib": "^1.2.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.29.0",
"cypress": "^6.6.0",
"dotenv": "10.0.0",
"eslint": "8.56.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"jest": "27.5.1",
"nx": "14.8.8",
"openapi-types": "^7.2.3",
"pg": "^8.5.1",
"prettier": "2.8.8",
"supertest": "^6.1.3",
"ts-jest": "27.1.4",
"ts-loader": "^8.0.18",
"ts-node": "~10.9.2",
"tsconfig-paths": "^3.9.0",
"tslint": "~6.1.3",
"typescript": "4.9.5"
}
}