-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.9 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
{
"name": "ts-rest-workspace",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"private": true,
"author": {
"name": "Kevin Firko",
"email": "[email protected]",
"url": "https://firxworx.com"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "NODE_ENV=development pnpm --recursive --stream run dev",
"dev:watch": "tsc -w",
"dev:preflight": "pnpm format && pnpm ci:check && pnpm ci:test",
"ci:lint": "pnpm lint",
"ci:check": "pnpm -r run check",
"ci:test": "CI=true NODE_ENV=test pnpm run test",
"ci:build": "NODE_ENV=production pnpm -r --stream run build",
"setup": "pnpm run reset && pnpm install",
"reset": "pnpm dlx rimraf --glob ./**/node_modules",
"build": "NODE_ENV=production pnpm -r --stream build",
"test": "CI=true NODE_ENV=test pnpm -r --stream run test",
"docker:up": "docker compose up -d && exit 0",
"docker:down": "docker compose down",
"prettier": "prettier --write .",
"lint": "NODE_OPTIONS=\"--max-old-space-size=2048\" pnpm run /^lint:.+/",
"lint:eslint": "eslint --config eslint.config.js",
"lint:prettier": "prettier --config prettier.config.js --check .",
"format": "pnpm run /^format:.+/",
"format:eslint": "eslint --config eslint.config.js . --fix",
"format:prettier": "prettier --config prettier.config.js --write .",
"deps:update": "pnpm update -r -i",
"deps:update:latest": "pnpm update -r -i --latest",
"deps:dedupe:check": "pnpm dedupe --check",
"deps:dedupe": "pnpm dedupe",
"deps:syncpack:check": "pnpm syncpack list-mismatches",
"deps:syncpack:fix": "pnpm syncpack fix-mismatches",
"deps:clear": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"workspace:pwd": "pnpm -w pwd",
"workspace:ls": "pnpm m ls --json --depth=-1 | node -e \"const path = require('path'); console.log(JSON.parse(require('fs').readFileSync('/dev/stdin', 'utf-8')).map((m) => path.relative(__dirname, m.path)).filter(Boolean))\"",
"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",
"kill:vscode-server:force": "ps uxa | grep .vscode-server | awk '{print $2}' | xargs kill -9",
"pnpm:env:use:lts": "pnpm env use --global lts"
},
"dependencies": {},
"devDependencies": {
"@eslint/compat": "^1.0.3",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "16.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "~1.6.0",
"autoprefixer": "^10.4.19",
"esbuild": "^0.21.5",
"eslint": "~9.4.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"globals": "^15.4.0",
"jsdom": "~24.1.0",
"postcss": "^8.4.38",
"postcss-discard-comments": "^7.0.0",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"rimraf": "^5.0.7",
"syncpack": "^12.3.2",
"tailwindcss": "3.4.4",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"tsx": "^4.15.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"vite": "~5.2.13",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "~1.6.0"
}
}