-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.59 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
72
73
74
75
76
{
"name": "remix-todo-app",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev --compatibility-date=2023-06-21 ./public",
"typecheck": "tsc",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage",
"pages:deploy": "npm run build && wrangler pages deploy ./public",
"drizzle:gen": "drizzle-kit generate:sqlite",
"drizzle:up": "drizzle-kit up:sqlite",
"d1:migrations:list": "wrangler d1 migrations list DB",
"d1:migrations:apply": "wrangler d1 migrations apply DB",
"local:d1:migrations:list": "wrangler d1 migrations list DB --local",
"local:d1:migrations:apply": "wrangler d1 migrations apply DB --local"
},
"dependencies": {
"@conform-to/react": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"@radix-ui/react-slot": "^1.1.0",
"@remix-run/cloudflare": "^2.17.4",
"@remix-run/cloudflare-pages": "^2.17.4",
"@remix-run/css-bundle": "^2.10.2",
"@remix-run/react": "^2.17.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.31.2",
"isbot": "^5.1.11",
"lucide-react": "^0.400.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-auth": "^3.7.0",
"remix-auth-discord": "^1.3.3",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240620.0",
"@remix-run/dev": "^2.17.4",
"@remix-run/testing": "^2.17.4",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.1",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.22.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.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.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vitest": "^1.6.1",
"wrangler": "3.63.1"
},
"engines": {
"node": ">=18.0.0"
}
}