-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "acme",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"deploy": "fly deploy --remote-only",
"dev": "remix dev",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"db:generate": "drizzle-kit generate:sqlite --out ./app/db/migrations --schema ./app/db/schema.ts",
"db:migrate": "tsx ./app/db/migrate",
"db:seed": "tsx ./app/db/seed"
},
"dependencies": {
"@epic-web/cachified": "^4.0.0",
"@faker-js/faker": "^8.3.1",
"@libsql/client": "0.4.0-pre.5",
"@paralleldrive/cuid2": "^2.2.2",
"@remix-run/css-bundle": "^2.3.1",
"@remix-run/node": "^2.3.1",
"@remix-run/react": "^2.3.1",
"@remix-run/serve": "^2.3.1",
"drizzle-orm": "^0.29.1",
"isbot": "^3.7.1",
"lru-cache": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.11",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@remix-run/dev": "^2.3.1",
"@remix-run/eslint-config": "^2.3.1",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.6",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.6",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}