-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) Β· 3.57 KB
/
package.json
File metadata and controls
116 lines (116 loc) Β· 3.57 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
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
{
"name": "next-js-boilerplate",
"author": "Ixartz (https://github.com/ixartz)",
"scripts": {
"dev:spotlight": "npx @spotlightjs/spotlight",
"dev:next": "next dev",
"dev": "run-p db-server:file dev:*",
"build:next": "next build",
"build-local": "run-p db-server:memory build:next --race",
"build": "run-s db:migrate build:next",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"clean": "rimraf .next out coverage",
"lint": "ultracite check --type-aware --type-check",
"lint:fix": "ultracite fix --type-aware --type-check",
"check:types": "tsc --noEmit --pretty",
"check:deps": "knip",
"check:i18n": "i18n-check -l src/locales -s en -u src -f next-intl",
"commit": "commit",
"test": "vitest run",
"test:e2e": "playwright test",
"db-server:file": "pglite-server -m 100 --db=local.db --run 'npm run db:migrate'",
"db-server:memory": "pglite-server -m 100 --run 'npm run db:migrate'",
"db:generate": "drizzle-kit generate",
"db:migrate": "dotenv -c -- drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"storybook": "storybook dev -p 6006",
"storybook:test": "vitest run --config .storybook/vitest.config.mts",
"build-storybook": "storybook build"
},
"dependencies": {
"@arcjet/next": "^1.3.0",
"@clerk/localizations": "^4.2.3",
"@clerk/nextjs": "^7.0.6",
"@hookform/resolvers": "^5.2.2",
"@logtape/logtape": "^2.0.4",
"@sentry/nextjs": "^10.45.0",
"@t3-oss/env-nextjs": "^0.13.10",
"drizzle-orm": "^0.45.1",
"next": "^16.2.1",
"next-intl": "^4.8.3",
"pg": "^8.20.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@chromatic-com/playwright": "^0.12.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/prompt-cli": "^20.5.0",
"@electric-sql/pglite-socket": "^0.1.1",
"@faker-js/faker": "^10.3.0",
"@lingual/i18n-check": "^0.9.3",
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.58.2",
"@spotlightjs/spotlight": "^4.11.3",
"@storybook/addon-a11y": "^10.3.1",
"@storybook/addon-docs": "^10.3.1",
"@storybook/addon-vitest": "^10.3.1",
"@storybook/nextjs-vite": "^10.3.1",
"@swc/helpers": "^0.5.19",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"checkly": "^7.7.0",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"knip": "^6.0.1",
"lefthook": "^2.1.4",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"storybook": "^10.3.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"ultracite": "^7.3.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"engines": {
"node": ">=20"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
}
}