-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.3 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.3 KB
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
{
"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.8.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@prettier/plugin-pug": "^3.2.0",
"@types/copyfiles": "^2.4.4",
"@types/lodash": "^4.17.14",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"chalk": "^5.4.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jest-circus": "^29.7.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}