-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.47 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
{
"name": "@rfx-nx-ts-rest/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "NODE_OPTIONS=\"--max-old-space-size=2048\" nx run-many --target=serve --projects=fastify-api,react-ui --parallel",
"build:all": "nx run-many --target=build --all --parallel=false --output-style=static --verbose",
"docker:up": "docker compose up -d && exit 0",
"docker:down": "docker compose down",
"test": "NODE_OPTIONS=\"--max-old-space-size=2048\" nx run-many --all --target=test --exclude=\"@rfx-nx-ts-rest/source\"",
"test:watch": "NODE_OPTIONS=\"--max-old-space-size=2048\" nx run-many --all --target=test --watch --exclude=\"@rfx-nx-ts-rest/source\"",
"lint": "NODE_OPTIONS=\"--max-old-space-size=2048\" nx run-many --all --target=lint --exclude=\"*e2e\" --exclude=\"@rfx-nx-ts-rest/source\"",
"format:check": "nx format:check",
"format:write": "nx format:write",
"prettier": "prettier --write .",
"kill:port": "bash -c 'pids=$(lsof -i :$0 | grep LISTEN | awk \"{print \\$2}\"); if [[ -z $pids ]]; then echo \"No process found running on port $0\"; else echo \"Killing: $pids\"; echo $pids | xargs kill; fi'",
"kill:vscode-server": "ps uxa | grep .vscode-server | awk '{print $2}' | xargs kill"
},
"private": true,
"dependencies": {
"@fastify/autoload": "~5.7.1",
"@fastify/sensible": "~5.2.0",
"@fastify/swagger": "^8.8.0",
"@fastify/swagger-ui": "^1.9.3",
"@roarr/cli": "^5.12.3",
"@swc/helpers": "~0.5.0",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-devtools": "^4.32.6",
"@ts-rest/core": "^3.28.0",
"@ts-rest/fastify": "^3.28.0",
"@ts-rest/open-api": "^3.28.0",
"@ts-rest/react-query": "^3.28.0",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"fastify": "~4.21.0",
"fastify-plugin": "~4.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-router-dom": "^6.15.0",
"tailwind-merge": "^1.14.0",
"tslib": "^2.3.0",
"zod": "^3.22.1"
},
"devDependencies": {
"@nx/cypress": "16.7.0",
"@nx/esbuild": "16.7.0",
"@nx/eslint-plugin": "16.7.0",
"@nx/jest": "16.7.0",
"@nx/js": "16.7.0",
"@nx/linter": "16.7.0",
"@nx/node": "16.7.0",
"@nx/react": "16.7.0",
"@nx/vite": "16.7.0",
"@nx/workspace": "16.7.0",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.76",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "~4.0.4",
"@vitest/coverage-c8": "~0.33.0",
"@vitest/ui": "~0.34.1",
"autoprefixer": "10.4.13",
"cypress": "^12.17.4",
"esbuild": "^0.19.2",
"eslint": "~8.47.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.6.2",
"jest-environment-node": "^29.4.1",
"jsdom": "~22.1.0",
"nx": "16.7.0",
"nx-cloud": "16.3.0",
"postcss": "8.4.21",
"prettier": "^2.6.2",
"tailwindcss": "3.2.7",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "~5.1.3",
"verdaccio": "^5.0.4",
"vite": "~4.4.9",
"vitest": "~0.34.1"
},
"nx": {
"includedScripts": []
}
}