-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 5.3 KB
/
Copy pathpackage.json
File metadata and controls
166 lines (166 loc) · 5.3 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "interweb.wtf",
"version": "1.0.0",
"private": true,
"release": {
"branches": [
"main"
],
"analyzeCommits": {
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "feat",
"release": "minor"
}
]
},
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores",
"hidden": false
}
]
}
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "npm run build:types && npm run build:app",
"build:app": "next build",
"build:types": "is-ci && npm run build:types:supabase || dotenv -e .env.local -- npm run build:types:supabase",
"build:types:supabase": "npx --yes supabase gen types typescript --project-id \"$NEXT_PUBLIC_SUPABASE_PROJECT_ID\" --schema public > ./src/types/supabase.ts",
"build:types:local": "npx --yes supabase gen types typescript --project-id \"$NEXT_PUBLIC_SUPABASE_PROJECT_ID\" --schema public > ./src/types/supabase.ts",
"dev": "npm run dev:supabase && npm run dev:app",
"dev:app": "next dev",
"dev:supabase": "npm run dev:supabase:start && npm run dev:supabase:types",
"dev:supabase:start": "supabase start",
"dev:supabase:types": "npm run build:types",
"eslint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "npm run eslint && npm run stylelint",
"prepare": "is-ci || npm run prepare:local",
"prepare:env": "path-exists ./.env.local || cp ./.env.example ./.env.local",
"prepare:husky": "husky install",
"prepare:local": "npm run prepare:env && npm run prepare:husky && npm run prepare:supabase && npm run prepare:playwright",
"prepare:playwright": "npx playwright install",
"prepare:supabase": "npm run supabase:init",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"start": "next start",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"stylelint": "stylelint '**/*.css' --cache",
"supabase:init": "path-exists ./supabase/config.toml || supabase init",
"test": "npm run prettier:check && npm run lint && npm run typecheck",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mantine/code-highlight": "^7.17.0",
"@mantine/core": "^7.17.0",
"@mantine/hooks": "^7.17.0",
"@mantine/notifications": "^7.17.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.1.5",
"@next/mdx": "^15.1.7",
"@shikijs/rehype": "^3.0.0",
"@sparticuz/chromium": "^132.0.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"@tabler/icons-react": "^3.29.0",
"@types/mdx": "^2.0.13",
"cloudflare": "^4.0.0",
"haikunator": "^2.1.2",
"next": "15.1.5",
"playwright-core": "^1.50.1",
"qrcode.react": "^4.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.0.0",
"shiki": "^3.0.0",
"usehooks-ts": "^3.1.0"
},
"overrides": {
"esbuild": ">=0.25.0",
"usehooks-ts": {
"react": "^19"
},
"whatwg-url": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@commitlint/config-conventional": "^19.7.1",
"@dotenvx/dotenvx": "^1.34.0",
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@storybook/nextjs": "^8.5.0",
"@storybook/react": "^8.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/react": "19.0.7",
"@types/user-agents": "^1.0.4",
"babel-loader": "^9.2.1",
"dotenv-cli": "^8.0.0",
"eslint": "^9.18.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"openapi-typescript": "^7.6.1",
"path-exists-cli": "^2.0.0",
"playwright": "^1.50.1",
"postcss": "^8.5.1",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"storybook": "^8.5.0",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^16.13.2",
"stylelint-config-standard-scss": "^14.0.0",
"ts-jest": "^29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "^8.20.0"
}
}