-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "scoreboard",
"version": "1.0.0",
"private": true,
"description": "scoreboard for tailuge/billiards running on vercel.com",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && eslint .",
"lint:smells": "oxlint src && jscpd src --ignore \"src/tests/**,src/playwright/**\"",
"prettify": "prettier --write --no-error-on-unmatched-pattern --trailing-comma es5 --no-semi {src,public}/**/*.{ts,tsx,css} *.json",
"deps": "npx yarn-check --skip-unused",
"coverage": "jest --coverage --config src/tests/jest.config.js",
"test": "jest --config src/tests/jest.config.js",
"docker:build": "docker build -t tailuge/billiards-network src/nchan",
"docker:buildpi": "docker buildx build --platform linux/arm64 -t tailuge/billiards-network src/nchan",
"docker:push": "docker push tailuge/billiards-network",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed"
},
"keywords": [
"next",
"vercel.com",
"billiards",
"express",
"llm",
"kv"
],
"author": "tailuge",
"license": "GPL-3.0",
"dependencies": {
"@heroicons/react": "^2.2.0",
"@tailuge/messaging": "1.18.0",
"@tailwindcss/postcss": "4.2.4",
"@vercel/kv": "3.0.0",
"glicko2.ts": "^1.3.2",
"jsoncrush": "^1.1.8",
"next": "16.2.4",
"next-swagger-doc": "^0.4.1",
"postcss": "8.5.12",
"react": "19.2.5",
"react-dom": "19.2.5",
"swagger-ui-react": "5.32.5",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "16.2.4",
"@playwright/test": "1.59.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@types/ioredis-mock": "8.2.7",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"eslint": "10.2.1",
"eslint-config-next": "16.2.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-sonarjs": "4.0.3",
"globals": "17.5.0",
"identity-obj-proxy": "^3.0.0",
"ioredis": "5.10.1",
"ioredis-mock": "8.13.1",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-transform-stub": "^2.0.0",
"jscpd": "4.0.9",
"oxlint": "1.62.0",
"postcss-load-config": "^6.0.1",
"prettier": "3.8.3",
"tailwindcss": "4.2.4",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1"
},
"browserslist": [
"defaults",
"ios >= 12",
"safari >= 12"
]
}