-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "void.vote",
"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",
"format": "prettier .",
"typecheck": "tsc"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@microlink/react-json-view": "^1.23.1",
"@penumbra-zone/client": "^18.0.1",
"@penumbra-zone/protobuf": "^6.0.0",
"@remix-run/node": "^2.10.3",
"@remix-run/react": "^2.10.3",
"@remix-run/serve": "^2.10.3",
"@tanstack/react-query": "^5.51.11",
"bignumber.js": "^9.1.2",
"dompurify": "^3.1.6",
"dotenv": "^16.4.5",
"framer-motion": "^11.3.18",
"immer": "^10.1.1",
"isbot": "^5.1.13",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-sanitize": "^6.0.0",
"remix-utils": "^7.6.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@remix-run/dev": "^2.10.3",
"@tailwindcss/typography": "^0.5.13",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}