-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.15 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
{
"name": "orca-remix",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "node ./server.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node ./server.mjs",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "react-router typegen && tsc"
},
"dependencies": {
"@heroui/react": "2.7.11",
"@react-aria/optimize-locales-plugin": "1.0.0",
"@react-router/express": "7.9.6",
"@react-router/fs-routes": "7.9.6",
"@react-router/node": "7.9.6",
"@types/accept-language-parser": "1.5.6",
"accept-language-parser": "1.5.0",
"date-fns": "^4.1.0",
"express": "^4.21.2",
"framer-motion": "^11.14.4",
"isbot": "^5.1.17",
"jwt-decode": "4.0.0",
"lodash": "4.17.21",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-aria": "^3.37.0",
"react-dom": "^18.3.1",
"react-router": "7.9.6",
"remix-themes": "^2.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@react-router/dev": "7.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@vitest/coverage-v8": "^4.0.15",
"cross-env": "7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^27.3.0",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"vite": "^7.2.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.19.0"
},
"version": "1.0.2"
}