-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3 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
88
89
90
91
{
"name": "next-launch-box",
"version": "1.0.0",
"private": true,
"type": "module",
"author": {
"name": "Abubakir Shavkatov (Warnigo)",
"url": "https://github.com/warnigo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warnigo/next-launch-box"
},
"scripts": {
"dev": "node scripts/reactor.mjs --dev && next dev --turbopack",
"build": "node scripts/reactor.mjs --build && next build",
"start": "node scripts/reactor.mjs --start && next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "pnpm generate:env --env=development && husky",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"types": "tsc --noEmit",
"typecheck": "tsc --noEmit --incremental false",
"clean": "rimraf .next && rimraf .next/cache && rimraf node_modules && rm -rf pnpm-lock.yaml",
"clean:build": "rimraf .next",
"clean:cache": "rimraf .next/cache",
"reboot": "pnpm clean && pnpm install",
"shadcn": "pnpm dlx shadcn@latest add",
"sort:dependencies": "node scripts/sort-dependencies/sort-dependencies.mjs",
"check:versions": "node scripts/validate-package-versions.mjs",
"generate:env": "node scripts/generate_env.mjs"
},
"dependencies": {
"@radix-ui/react-slot": "1.1.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"lucide-react": "0.460.0",
"next": "15.0.1",
"next-intl": "3.25.1",
"next-themes": "0.4.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@emotion/eslint-plugin": "11.12.0",
"@emotion/react": "11.13.3",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/typescript-estree": "8.14.0",
"chalk": "5.3.0",
"eslint": "8.56.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-no-secrets": "1.1.2",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.6",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"rimraf": "6.0.1",
"shadcn": "2.1.6",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"engines": {
"node": ">=20.0.0"
}
}