-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.39 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.39 KB
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
{
"name": "marketplace",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"start": "lerna run start --parallel",
"start:dev": "lerna run start:dev --parallel",
"start:packages": "lerna run start:packages",
"codegen": "lerna run codegen",
"supergraph": "APOLLO_ELV2_LICENSE=accept rover supergraph compose --config ./apolloRouter/supergraph.yml > ./apolloRouter/supergraph.graphql",
"supergraph:dev": "APOLLO_ELV2_LICENSE=accept rover supergraph compose --config ./apolloRouter/supergraph.dev.yml > ./apolloRouter/supergraph.graphql"
},
"devDependencies": {
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/typescript": "2.8.5",
"@graphql-codegen/typescript-resolvers": "2.7.10",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"lerna": "^6.1.0",
"nodemon": "^2.0.20",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"kafkajs": "^2.2.4",
"tsconfig-paths": "^4.1.1"
}
}