forked from Hoishin/social-media-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"private": true,
"type": "module",
"scripts": {
"start": "remix-serve build/server/index.js",
"local-start": "dotenv -e .env -e .env.local -- npm run start",
"dev": "panda codegen && run-p --race dev:*",
"dev:types": "tsc --noEmit --watch --preserveWatchOutput",
"dev:server": "remix vite:dev --port 3000",
"build": "panda codegen && remix vite:build",
"check": "run-s check:*",
"check:types": "tsc --noEmit",
"check:lint": "eslint --ext .ts,.tsx .",
"check:format": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@atproto/api": "^0.12.7",
"@prisma/client": "^5.10.2",
"@radix-ui/themes": "^3.0.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-resources-to-backend": "^1.2.1",
"isbot": "^5.1.1",
"ky": "^1.2.1",
"next-themes": "^0.3.0",
"puppeteer": "^22.3.0",
"react-i18next": "^14.1.0",
"remix-i18next": "^6.0.1",
"sharp": "^0.33.3",
"twitter-text": "^3.1.0",
"zod": "^3.22.4",
"zod-form-data": "^2.0.2",
"zustand": "^4.5.1"
},
"devDependencies": {
"@pandacss/dev": "^0.36.1",
"@remix-run/dev": "^2.8.1",
"@types/node": "^20.11.22",
"@types/react": "^18.2.60",
"@types/twitter-text": "^3.1.10",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all2": "^6.1.2",
"prisma": "^5.10.2",
"typescript": "^5.3.3"
}
}