-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.91 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
{
"name": "targabay",
"version": "0.1.0",
"description": "An online vehicle marketplace platform",
"author": "a.kajendran@gmail.com",
"license": "MIT",
"scripts": {
"reset": "nx reset",
"dev:api-service": "nx dev api-service",
"dev:expire-listings-job": "nx dev expire-listings-job",
"dev:notify-review-job": "nx dev notify-review-job",
"dev:subscriptions-job": "nx dev subscriptions-job --args='Daily'",
"dev:webapp": "nx dev webapp",
"dev": "nx run-many --parallel --target=dev --projects=api-service,webapp",
"start:webapp": "nx start webapp",
"start:api-service": "nx start webapp",
"start": "nx run-many --parallel --target=start --projects=api-service,webapp",
"lint": "nx run-many --parallel --target=lint --exclude=xata,protos",
"lint:fix": "nx run-many --parallel --target=lint --fix --exclude=xata,protos",
"format": "nx format:write",
"test:e2e:ui": "nx run e2e-tests:e2e --ui",
"test:e2e": "nx run e2e-tests:e2e",
"build:protos": "nx build protos",
"build:api-service": "nx build api-service",
"build:expire-listings-job": "nx build expire-listings-job",
"build:notify-review-job": "nx build notify-review-job",
"build:subscriptions-job": "nx build subscriptions-job",
"build:webapp": "nx build webapp",
"build": "nx run-many --parallel --target=build",
"pulumi-up": "nx deploy pulumi",
"nx-graph": "nx graph",
"nx-repair": "nx repair"
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.11.0",
"lint-staged": {
"*.{ts,tsx}": "pnpm lint:fix"
},
"prettier": {
"tabWidth": 4,
"printWidth": 150
},
"dependencies": {
"@bufbuild/protobuf": "^1.7.2",
"@connectrpc/connect": "^1.3.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.29.0",
"@bufbuild/protoc-gen-es": "^1.7.2",
"@connectrpc/protoc-gen-connect-es": "^1.3.0",
"@nx-go/nx-go": "3.0.0",
"@nx/devkit": "18.0.4",
"@nx/eslint": "18.0.4",
"@nx/next": "18.0.4",
"@nx/playwright": "18.3.5",
"@nx/web": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@playwright/test": "^1.36.0",
"@types/node": "20.1.3",
"eslint": "~8.57.0",
"eslint-plugin-playwright": "^0.15.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nx": "18.0.4",
"prettier": "^3.3.2",
"eslint-plugin-typescript-sort-keys": "^3.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-config-prettier": "^9.0.0",
"@typescript-eslint/parser": "^6.7.3",
"@typescript-eslint/eslint-plugin": "^6.16.0"
}
}