-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.57 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
{
"name": "tdn-client",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@11.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"preview": "pnpm run build && wrangler dev",
"deploy": "pnpm run build && wrangler deploy",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
],
"lint-staged": {
"{src,worker}/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"engines": {
"node": ">25"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"franc-min": "^6.2.0",
"lucide-react": "^1.35.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-helmet-async": "^3.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.3",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@cloudflare/vite-plugin": "^1.54.2",
"@cloudflare/workers-types": "^5.20260829.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@rolldown/plugin-babel": "^0.2.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.6",
"@types/babel__core": "^7.20.5",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^4.1.11",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.5",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.4.1",
"msw": "^2.15.0",
"prettier": "3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.68.0",
"vite": "8.2.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.11",
"wrangler": "^4.127.1"
}
}