-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.89 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.89 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "magicscreen",
"description": "MagicScreen - Like a modern MagicMirror, but without the mirror...",
"version": "1.1.0",
"private": true,
"type": "module",
"author": {
"name": "ryck",
"url": "https://github.com/ryck"
},
"repository": {
"type": "git",
"url": "https://github.com/ryck/magicscreen.git"
},
"bugs": {
"url": "https://github.com/ryck/magicscreen/issues"
},
"homepage": "https://github.com/ryck/magicscreen#readme",
"license": "MIT",
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=22.12.0",
"pnpm": ">=10.0.0"
},
"keywords": [
"react",
"vite",
"typescript",
"tailwindcss",
"vitest",
"playwright",
"biome",
"modern"
],
"scripts": {
"dev": "concurrently --kill-others \"pnpm run dev:server\" \"pnpm run dev:client --host\"",
"dev:server": "nodemon --exec tsx server/index.ts",
"dev:client": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "vite preview --port 5173 --host 0.0.0.0",
"start:server": "node --import tsx/esm server/index.ts",
"start": "concurrently \"pnpm run start:server\" \"pnpm run serve\"",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test --reporter=list",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headless": "playwright test --headed=false",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:edge": "playwright test --project='Microsoft Edge'",
"test:e2e:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:e2e:desktop": "playwright test --project=chromium --project=firefox --project=webkit --project='Microsoft Edge'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --project tsconfig.json --noEmit",
"clean": "rm -rf dist node_modules/.vite",
"validate": "pnpm typecheck && pnpm lint && pnpm test",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"humanize-duration": "^3.33.2",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"recharts": "^3.6.0",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@redux-devtools/extension": "^3.3.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@toolwind/corner-shape": "0.0.8-3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vercel/node": "^5.5.16",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/ui": "^4.0.16",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.11",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-inspect": "^11.3.3",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
}
}