-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.32 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
{
"private": true,
"version": "3.0.3",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"workspaces": [
"client",
"docs",
"server",
"scripts"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"start:client": "cd ./client/ && pnpm start",
"start:server": "cd ./server/ && pnpm start",
"format": "pnpm run --recursive format",
"build": "cd ./scripts/ && tsx ./build.ts",
"ts:check": "pnpm run --recursive ts:check",
"ts:check:client": "echo Type checking client && cd ./client && pnpm run ts:check",
"ts:check:server": "echo Type checking server && cd ./server && pnpm run ts:check",
"docker:build": "pnpx tsx ./build-docker-image.ts",
"docker:build:pre": "pnpx tsx ./build-docker-image.ts --pre",
"docker:build:tar": "pnpx tsx ./build-docker-image.ts --bundle",
"docker:test": "cd ./scripts/ && pnpx tsx ./build-test-docker/buildAndTestDocker.ts",
"upgrade-pkg": "npm-upgrade && pnpm run --recursive npm-upgrade",
"upgrade-pkg:client": "cd ./client && npm-upgrade",
"upgrade-pkg:server": "cd ./server && npm-upgrade"
},
"dependencies": {
"class-transformer": "^0.5.1",
"github-markdown-css": "^5.6.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@prettier/plugin-pug": "^3.0.0",
"@types/copyfiles": "^2.4.4",
"@types/lodash": "^4.17.7",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"chalk": "^5.3.0",
"client": "^0.0.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jest-circus": "^29.7.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.1"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}