-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 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": "xxx",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"up": "taze major -I",
"typecheck": "tsc",
"test": "vitest"
},
"dependencies": {
"@remix-run/node": "^2.15.2",
"@remix-run/react": "^2.15.2",
"@remix-run/serve": "^2.15.2",
"isbot": "^5.1.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.5",
"@remix-run/dev": "^2.15.2",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@unocss/eslint-config": "^65.4.2",
"@unocss/eslint-plugin": "^65.4.2",
"@unocss/reset": "^65.4.2",
"jsdom": "^26.0.0",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"taze": "^18.1.0",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.2"
},
"engines": {
"node": ">=20.0.0"
}
}