-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "postgres-joist",
"repository": "https://github.com/vercel/examples.git",
"license": "MIT",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"db": "docker compose up -d db --wait && docker compose exec db ./reset.sh && yarn joist-codegen",
"psql": "docker compose exec db ./console.sh",
"joist-codegen": "env-cmd tsx ./node_modules/joist-codegen",
"seed": "tsx ./seeds/authorWithSomeBooks.ts",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/ms": "^0.7.34",
"@types/node": "20.12.7",
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
"autoprefixer": "10.4.19",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.1",
"joist-codegen": "^1.160.2",
"joist-orm": "^1.160.2",
"joist-plugin-join-preloading": "^1.160.2",
"joist-test-utils": "^1.160.2",
"ms": "^2.1.3",
"next": "14.2.1",
"postcss": "8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.4.3",
"tsx": "^4.7.2",
"typescript": "5.4.5"
},
"devDependencies": {
"copy-and-watch": "^0.1.8",
"prettier": "^3.2.5"
},
"packageManager": "yarn@4.1.1"
}