forked from ixartz/SaaS-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) 路 4.06 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) 路 4.06 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
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "saas-boilerplate",
"author": "Ixartz (https://github.com/ixartz)",
"engines": {
"node": ">=24"
},
"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": "eslint .",
"lint:fix": "eslint . --fix",
"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.ts",
"build-storybook": "storybook build"
},
"dependencies": {
"@clerk/localizations": "^4.8.1",
"@clerk/nextjs": "^7.5.2",
"@clerk/ui": "^1.16.1",
"@logtape/logtape": "^2.1.5",
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slot": "^1.3.0",
"@sentry/nextjs": "^10.58.0",
"@t3-oss/env-nextjs": "^0.13.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.18.0",
"next": "^16.2.9",
"next-intl": "^4.13.0",
"pg": "^8.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@chromatic-com/playwright": "^0.14.9",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/prompt-cli": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@electric-sql/pglite": "^0.5.3",
"@electric-sql/pglite-socket": "^0.2.4",
"@eslint-react/eslint-plugin": "^5.9.0",
"@lingual/i18n-check": "^0.9.5",
"@next/bundle-analyzer": "^16.2.9",
"@next/eslint-plugin-next": "^16.2.9",
"@playwright/test": "^1.61.0",
"@spotlightjs/spotlight": "^4.11.6",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/nextjs-vite": "^10.4.6",
"@swc/helpers": "^0.5.23",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/coverage-v8": "^4.1.9",
"babel-plugin-react-compiler": "^1.0.0",
"checkly": "^8.8.0",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.5.0",
"eslint-plugin-better-tailwindcss": "^4.6.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-playwright": "^2.10.4",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-storybook": "^10.4.6",
"knip": "^6.17.1",
"lefthook": "^2.1.9",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.5",
"storybook": "^10.4.6",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"vitest-browser-react": "^2.2.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
}
}