-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.66 KB
/
package.json
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
{
"name": "env-edit",
"version": "0.0.1",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"scripts": {
"summary:build": "node src/lib/summaries.mjs build",
"telemetry:disable": "next telemetry disable",
"build:pre": "pnpm summary:build && pnpm telemetry:disable && netlify --telemetry-disable",
"dev": "pnpm build:pre && next dev",
"build": "pnpm build:pre && next build",
"start": "NODE_ENV=production next start",
"prettier:w": "prettier -w .",
"start:docker": "NODE_ENV=production pnpm build && NODE_ENV=production pnpm start",
"lint": "next lint",
"precommit": "lint-staged",
"netlify:deploy": "netlify deploy --build",
"prepare": "husky"
},
"dependencies": {
"@gitbeaker/rest": "41.3.0",
"@mantine/hooks": "7.15.2",
"@radix-ui/react-accordion": "1.2.2",
"@radix-ui/react-checkbox": "1.1.3",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-hover-card": "1.1.4",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-scroll-area": "1.2.2",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-separator": "1.1.1",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-toast": "1.2.4",
"@radix-ui/react-tooltip": "1.1.6",
"@tanstack/react-query": "5.62.11",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.0.4",
"cookies-next": "5.0.2",
"lucide-react": "0.469.0",
"next": "15.1.3",
"next-auth": "4.24.11",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"usehooks-ts": "3.1.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "5.9.2",
"@tanstack/eslint-plugin-query": "5.62.9",
"@tanstack/react-query-devtools": "5.62.11",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"autoprefixer": "10.4.20",
"boxen": "8.0.1",
"eslint": "8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"markdownlint-cli2": "0.17.1",
"markdownlint-cli2-formatter-codequality": "0.0.5",
"markdownlint-cli2-formatter-junit": "0.0.12",
"markdownlint-cli2-formatter-summarize": "0.0.7",
"netlify-cli": "17.38.1",
"postcss": "8.4.49",
"prettier": "3.4.2",
"shadcn-ui": "0.9.4",
"tailwindcss": "3.4.17",
"typescript": "5.7.2"
},
"lint-staged": {
"*.{tsx,ts,mjs,js}": [
"eslint",
"prettier --write"
],
"*.{json,css}": [
"prettier --write"
],
"*.md": [
"markdownlint-cli2"
]
}
}