-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.85 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
{
"name": "render",
"version": "1.0.0",
"description": "Opinionated React template",
"author": "Omar Elhawary <oedotme@gmail.com>",
"license": "MIT",
"type": "module",
"keywords": [
"app",
"boilerplate",
"client",
"context",
"data-loaders",
"file-based-routing",
"frontend",
"hooks",
"nested-layouts",
"react",
"react-router",
"routes",
"structure",
"tanstack",
"template",
"vite",
"web"
],
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite build; vite preview --port 5000",
"type-check": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{css,html,json,md,mdx,js,jsx,ts,tsx}'",
"lint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:record": "playwright codegen",
"prepare": "husky"
},
"dependencies": {
"@generouted/react-router": "^1.20.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.37.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0"
}
}