-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.18 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": "repo",
"version": "0.0.0-alpha.12",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Sheraff/root.git"
},
"scripts": {
"analyze": "turbo analyze --filter client",
"dev": "turbo dev tsc:watch:css",
"test": "turbo root:test",
"test:ci": "turbo test",
"build": "turbo build",
"serve": "NODE_ENV=production node --env-file=.env dist/server/app.mjs",
"lint": "turbo lint root:lint --continue --log-order=grouped",
"lint:fix": "turbo lint:fix root:lint:fix --continue --log-order=grouped",
"format": "turbo format root:format --continue --log-order=grouped",
"format:fix": "turbo format:fix root:format:fix --continue --log-order=grouped",
"tsc": "turbo tsc root:tsc --continue --log-order=grouped",
"knip": "knip",
"spell": "turbo spell root:spell --continue --log-order=grouped",
"clear": "turbo clear root:clear --continue",
"root:test": "vitest",
"root:tsc": "echo 'done'",
"root:tsc:app": "tsc --noEmit --project tsconfig.app.json",
"root:tsc:tools": "tsc --noEmit --project tsconfig.tools.json",
"root:lint": "eslint '*.ts' 'types/*'",
"root:lint:fix": "eslint '*.ts' 'types/*' --fix",
"root:format": "prettier --check '*.ts' '*.json' 'types/*' '.github/**/*' --config .prettierrc.json --log-level warn",
"root:format:fix": "prettier --write '*.ts' '*.json' 'types/*' '.github/**/*' --config .prettierrc.json --log-level warn",
"root:spell": "cspell --config .cspell.json --quiet --gitignore '*' 'types/*' '.github/**/*'",
"root:clear": "rm -rf dist; rm -rf node_modules; rm -rf .turbo; find . -name '*.tsbuildinfo' -type f -delete;"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/session": "^10.7.0",
"@fastify/static": "7.0.3",
"@tanstack/react-query": "^5.29.0",
"@tanstack/react-query-devtools": "^5.29.0",
"@vlcn.io/crsqlite": "0.16.3",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"@vlcn.io/rx-tbl": "0.15.0",
"@vlcn.io/ws-common": "0.2.0",
"better-sqlite3": "^9.4.5",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"grant": "^5.4.22",
"pino-pretty": "11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"valibot": "0.30.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@fastify/http-proxy": "^9.5.0",
"@total-typescript/ts-reset": "0.5.1",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "20.12.5",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/web-push": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react-swc": "3.6.0",
"@vitest/web-worker": "^1.4.0",
"chalk": "^5.3.0",
"chokidar": "3.6.0",
"cspell": "^8.6.1",
"esbuild": "0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-refresh": "^0.4.6",
"json-schema-to-ts": "3.0.1",
"knip": "^5.8.0",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "5.12.0",
"tsx": "4.7.2",
"turbo": "1.13.2",
"typed-css-modules": "^0.9.1",
"typescript": "^5.4.4",
"vite": "5.2.8",
"vitest": "^1.4.0",
"vitest-github-actions-reporter": "^0.11.1"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"engineStrict": true,
"packageManager": "pnpm@8.15.2"
}