forked from Project-Pandora-Game/pandora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.31 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
{
"private": true,
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"engines": {
"node": ">=24.x"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"nanoid"
]
},
"overrides": {
"superstatic>re2": "-"
},
"patchedDependencies": {
"react-switch": "patches/react-switch.patch"
},
"allowUnusedPatches": false,
"ignorePatchFailures": false,
"onlyBuiltDependencies": [
"argon2",
"unrs-resolver"
],
"ignoredBuiltDependencies": [
"core-js-pure"
]
},
"type": "module",
"scripts": {
"clean": "rimraf coverage && pnpm -r --no-bail --parallel --silent run clean",
"setup-dev": "pnpm --filter pandora-common --silent run build",
"postinstall": "node .hooks/postinstall.cjs",
"ci": "pnpm run build && pnpm run lint:root && pnpm run type-check:test && pnpm run test --ci --coverage && pnpm run test-e2e && pnpm run coverage:collect",
"deploy": "pnpm run build && pnpm run deploy-client-rsync",
"deploy-client": "pnpm --filter pandora-client-web run build && pnpm run deploy-client-rsync",
"deploy-client-rsync": "rsync -rltOvcP --delete-delay ./pandora-client-web/dist/ ../pandora-client-web/dist",
"lint": "pnpm -r --no-bail --parallel run lint",
"lint:root": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"type-check": "pnpm -r --no-bail --parallel run '/type-check:.*/'",
"type-check:test": "pnpm -r --no-bail --parallel run '/type-check:test.*/'",
"test": "pnpm -r --no-bail --parallel run test",
"test-e2e": "pnpm run -C pandora-tests type-check && pnpm run -C pandora-tests playwright-setup && pnpm run -C pandora-tests test-e2e && pnpm run -C pandora-tests coverage:report",
"coverage:collect": "node .hooks/coverage-collect.cjs",
"build": "pnpm -r --no-bail run build",
"dev": "pnpm --filter pandora-common run build && pnpm -r --parallel run dev"
},
"dependencies": {
"js-yaml": "4.1.1"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@stylistic/eslint-plugin": "5.10.0",
"eslint": "9.39.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"jest": "30.3.0",
"nyc": "18.0.0",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
}
}