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
|
{
"name": "k-heardle",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "19.2.3",
"@types/react-router-dom": "^5.3.3",
"chart.js": "^4.5.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"lodash": "^4.18.1",
"prop-types": "^15.8.1",
"react": "^19.2.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-is": "^19.2.7",
"react-router-dom": "^7.17.0",
"react-youtube": "^10.1.0",
"styled-components": "^6.4.2",
"typescript": "^6.0.3",
"web-vitals": "^5.3.0"
},
"resolutions": {
"@types/react": "^17.0.14",
"@types/react-dom": "17.0.14",
"nth-check": "2.1.1"
},
"scripts": {
"start": "vite",
"start:server": "ts-node -P tsconfig.server.json server/index.ts",
"dev": "concurrently \"pnpm start\" \"pnpm start:server\"",
"build": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"serve": "NODE_ENV=production node dist/server/index.js",
"test": "vitest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.24",
"@types/styled-components": "^5.1.36",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/ui": "^4.1.8",
"concurrently": "^10.0.3",
"eslint": "^10.4.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@8.15.3"
}
|