-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "remix-starter",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"prepare": "husky || true",
"dev": "vite",
"build": "pnpm build:remix && pnpm build:server",
"build:remix": "remix vite:build",
"build:server": "tsx server/builder.ts",
"start": "cross-env NODE_ENV=production node ./build/server/index.js",
"start:build": "pnpm build && pnpm start",
"start:mocks": "cross-env NODE_ENV=production MOCKS=true node ./build/server/index.js",
"sb": "sb dev -p 6006",
"sb:build": "sb build",
"ui:add": "pnpm dlx shadcn-ui@latest add",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm test:e2e:dev --silent",
"test:e2e:dev": "playwright test --ui",
"pretest:e2e:run": "pnpm build",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "npx playwright install --with-deps chromium",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc",
"docker:up": "docker-compose up -d --build"
},
"dependencies": {
"@hono/node-server": "^1.8.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/server-runtime": "^2.8.1",
"better-sqlite3": "^9.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.2",
"hono": "^4.1.1",
"is-ip": "^5.0.1",
"isbot": "^5.1.1",
"lucide-react": "^0.358.0",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-auth-socials": "^2.0.6",
"remix-auth-totp": "^3.0.0",
"remix-utils": "^7.5.0",
"sonner": "^1.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@hono/vite-dev-server": "^0.9.0",
"@playwright/test": "^1.42.1",
"@remix-run/dev": "^2.8.1",
"@remix-run/testing": "^2.8.1",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/cli": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/better-sqlite3": "^7.6.9",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"autoprefixer": "^10.4.18",
"drizzle-kit": "^0.20.14",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"remix-flat-routes": "^0.6.4",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"pnpm": {
"overrides": {
"@remix-run/server-runtime": "$@remix-run/server-runtime"
}
},
"engines": {
"node": "20"
},
"eslintIgnore": [
"node_modules",
"build",
"coverage",
"storybook-static",
"vite.config.ts.timestamp*"
]
}