-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.61 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
{
"name": "nx-ngrok",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build --all",
"ci": "pnpm lint:fix --parallel=1 && pnpm build --parallel=1 && pnpm test --parallel=1 && pnpm e2e",
"ci:skip-cache": "pnpm lint:fix --parallel=1 --skip-nx-cache && pnpm build --parallel=1 --skip-nx-cache && pnpm test -- --parallel=1 --skip-nx-cache && pnpm e2e --skip-nx-cache",
"e2e": "nx run-many --target=e2e --all --parallel=1",
"lint:fix": "nx format:write && nx run-many --target=lint --all --fix",
"lint": "nx format && nx run-many --target=lint --all",
"nx:update": "./tools/scripts/nx-update.sh",
"test": "nx run-many --target=test --all"
},
"engines": {
"pnpm": ">=8"
},
"private": true,
"dependencies": {
"@nrwl/devkit": "15.7.1",
"ngrok": "4.3.3"
},
"packageManager": "pnpm@8.0.0",
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-angular": "^17.4.4",
"@graphql-mesh/cli": "0.82.27",
"@graphql-mesh/graphql": "0.34.10",
"@graphql-typed-document-node/core": "3.1.2",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cypress": "15.7.1",
"@nrwl/esbuild": "15.7.1",
"@nrwl/eslint-plugin-nx": "15.7.1",
"@nrwl/jest": "15.7.1",
"@nrwl/js": "15.7.1",
"@nrwl/linter": "15.7.1",
"@nrwl/nest": "15.7.1",
"@nrwl/next": "15.7.1",
"@nrwl/node": "15.7.1",
"@nrwl/nx-cloud": "latest",
"@nrwl/nx-plugin": "15.7.1",
"@nrwl/react": "15.7.1",
"@nrwl/vite": "15.7.1",
"@nrwl/webpack": "15.7.1",
"@nrwl/workspace": "15.7.1",
"@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@swc/helpers": "~0.4.11",
"@swc/jest": "0.2.20",
"@testing-library/react": "13.4.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "28.1.1",
"@types/kill-port": "^2.0.0",
"@types/node": "18.11.9",
"@types/react-dom": "18.0.9",
"@types/react": "18.0.25",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"axios": "^1.0.0",
"babel-jest": "28.1.1",
"chalk": "^4.1.2",
"cypress": "^12.2.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react": "7.31.11",
"eslint": "~8.15.0",
"fs-extra": "11.1.1",
"get-port": "5.1.1",
"graphql": "16.6.0",
"husky": "^8.0.3",
"jest-environment-jsdom": "28.1.1",
"jest": "28.1.1",
"jsonc-eslint-parser": "^2.1.0",
"kill-port": "2.0.1",
"lint-staged": "^13.2.0",
"next": "13.1.1",
"nx-mesh": "4.0.0-next-20230320174438",
"nx": "15.7.1",
"prettier": "^2.6.2",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"react": "18.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"tcp-port-used": "1.0.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~4.8.2"
},
"volta": {
"node": "18.15.0"
},
"pnpm": {
"overrides": {
"@nrwl/cypress": "15.7.1",
"@nrwl/jest": "15.7.1",
"@nrwl/js": "15.7.1",
"@nrwl/node": "15.7.1",
"@nrwl/webpack": "15.7.1"
}
}
}