-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "my-react-router-app",
"homepage": "https://nfdi-jupyter.github.io/website-dev/",
"private": true,
"type": "module",
"scripts": {
"docs:build": "zensical build -f docs/zensical.toml",
"docs:clean": "rm -rf public/docs",
"docs:move": "mv docs/site public/docs",
"docs:sync": "pnpm run docs:clean && pnpm run docs:build && pnpm run docs:move",
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"prettier": "prettier --write \"app/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lint": "eslint --ext .tsx --ext .ts app/",
"lint:fix": "eslint --ext .tsx --ext .ts app/ --fix",
"typecheck": "react-router typegen && tsc",
"test": "vitest"
},
"dependencies": {
"@react-router/node": "7.14.0",
"@react-router/serve": "7.14.0",
"isbot": "^5.2.1",
"motion": "^12.42.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.7.0",
"react-router": "7.14.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@react-router/dev": "7.14.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^16.5.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}