-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.03 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
{
"name": "next-mdx-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:sitemap": "next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"docker:build": "docker build -t thinktapfast-app .",
"docker:run": "docker run -p 3000:3000 --env-file .env.production.local thinktapfast-app",
"docker:build:dev": "docker build -t thinktapfast-app-dev -f Dockerfile.dev .",
"docker:run:dev:cmd": "docker run -p 3000:3000 --env-file .env.development.local -v %cd%:/app -v /app/node_modules thinktapfast-app-dev",
"docker:run:dev:powershell": "powershell -ExecutionPolicy Bypass -File scripts/docker-dev.ps1",
"docker:run:dev:mac": "bash scripts/docker-dev.sh",
"docker:run:dev:linux": "bash scripts/docker-dev.sh"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"core-js": "^3.45.1",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-sitemap": "^4.2.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^18",
"react-dom": "^18",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"shiki": "^1.6.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"ie >= 11"
],
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-tailwindcss": "^3.17.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"velite": "0.1.0-rc.3"
}
}