-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 KB
/
package.json
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
{
"name": "tanstack-router-example-react-start-basic",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint": "prettier --check '**/*' --ignore-unknown && eslint --ext .ts,.tsx ./app",
"format": "prettier --write '**/*' --ignore-unknown",
"test:e2e": "playwright test --project=chromium",
"test:e2e:replay": "playwright test --project=replay-chromium"
},
"dependencies": {
"@tanstack/react-router": "^1.43.12",
"@tanstack/router-devtools": "^1.43.12",
"@tanstack/router-plugin": "^1.43.12",
"@tanstack/start": "^1.43.12",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4",
"better-sqlite3": "^11.1.2",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.8",
"drizzle-orm": "^0.31.2",
"isbot": "^3.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redaxios": "^0.5.0",
"tailwind-merge": "^1.14.0",
"vinxi": "^0.3.11"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@replayio/playwright": "^3.0.1",
"@types/node": "^20.12.11",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-unicorn": "^49.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.2"
}
}