forked from t3-oss/create-t3-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.07 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
{
"name": "@ct3a/upgrade",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"build": "next build",
"clean": "rm -rf node_modules .turbo dist .eslintcache",
"dev": "next dev",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc --noEmit",
"start": "next start"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@mdx-js/loader": "^2.3.0",
"@next/mdx": "^13.4.1",
"@octokit/request": "^7.0.0-beta.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-slot": "^1.0.1",
"@t3-oss/env-nextjs": "^0.9.2",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"gitdiff-parser": "^0.3.1",
"lucide-react": "^0.263.1",
"next": "^14.2.1",
"react": "18.2.0",
"react-diff-view": "^3.0.3",
"react-dom": "18.2.0",
"refractor": "^4.8.1",
"rehype-pretty-code": "^0.9.5",
"shiki": "^0.14.1",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/mdx": "^2.0.11",
"@types/node": "^20.11.20",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/refractor": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"postcss": "^8.4.21",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"ct3aMetadata": {
"initVersion": "7.13.0"
}
}