-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.81 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
77
78
79
80
81
{
"name": "constructive-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port ${PORT:-3011}",
"build": "next build",
"start": "next start --port ${PORT:-3011}",
"lint": "eslint .",
"lint:types": "tsc --noEmit",
"deps": "pnpm up -r -i -L",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"codegen": "rm -rf ./src/graphql/sdk/admin ./src/graphql/sdk/auth ./src/graphql/sdk/app && npx @constructive-io/graphql-codegen generate --config ./graphql-codegen.config.ts",
"codegen:w": "npx @constructive-io/graphql-codegen generate --config ./graphql-codegen.config.ts --watch",
"create-db": "pnpm --filter @constructive-app/provision run create-db",
"provision": "pnpm --filter @constructive-app/provision run provision",
"seed": "pnpm --filter @constructive-app/provision run seed",
"export:graphql": "pnpm --filter @constructive-app/export run export:graphql"
},
"dependencies": {
"@0no-co/graphql.web": "^1.2.0",
"@base-ui/react": "^1.5.0",
"@constructive-io/graphql-query": "^3.27.5",
"@constructive-io/graphql-types": "^3.12.0",
"@lukemorales/query-key-factory": "^1.3.4",
"@pgpmjs/export": "link:../../../constructive/pgpm/export",
"@remixicon/react": "^4.9.0",
"@tanstack/react-form": "^1.32.0",
"@tanstack/react-query": "^5.100.11",
"@use-gesture/react": "^10.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gql-ast": "^3.11.0",
"graphql": "16.14.0",
"lucide-react": "^1.16.0",
"motion": "^12.40.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"pg": "^8.21.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@constructive-io/graphql-codegen": "^4.47.6",
"@eslint/eslintrc": "^3.3.5",
"@graphql-typed-document-node/core": "^3.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"eslint": "^10.4.0",
"eslint-config-next": "^16.2.6",
"eslint-plugin-react-hooks": "7.1.1",
"prettier": "^3.8.3",
"prettier-plugin-classnames": "^0.10.1",
"prettier-plugin-merge": "^0.10.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"pnpm": {
"overrides": {
"graphql": "16.14.0"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}