-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"name": "my-react-router-app",
"homepage": "https://nfdi-jupyter.github.io/website-dev/",
"private": true,
"type": "module",
"scripts": {
"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.1.40",
"motion": "^12.38.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"react-router": "7.14.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@react-router/dev": "7.14.0",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^22.19.18",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-plugin-prettier": "^5.5.5",
"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.2.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.11",
"vitest": "^4.1.5"
}
}