-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.74 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": "mysite",
"version": "1.84.0",
"private": true,
"scripts": {
"build": "next build",
"postbuild": "echo 'next-sitemap'",
"hooks": "husky install",
"dev": "next dev",
"start": "next start",
"test": "npx jest --coverage; cd test/e2e && npx playwright test",
"test:coverage": "jest --coverage",
"lint": "pnpm run lint:ts && pnpm run format ",
"lint-all": "pnpm run lint:ts && pnpm run lint:md && pnpm run format && pnpm run lint:knip && pnpm run lint:spelling",
"lint:ts": "tsc --noEmit; eslint .",
"lint:knip": "knip --production --strict --exclude exports,nsExports,types,nsTypes",
"format": "prettier . --write",
"format-check": "prettier --check .",
"lint:md": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
"lint:spelling": "cspell \"**\" \".github/**/*\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@cspell/dict-cryptocurrencies": "5.0.0",
"@playwright/test": "^1.40.1",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.1",
"@types/jest": "^29.5.11",
"@types/mdx": "^2.0.10",
"@types/node": "^20.11.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.0.1",
"cspell": "8.3.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"knip": "^5.0.0",
"markdownlint-cli": "0.38.0",
"postcss": "^8",
"prettier": "^3.1.1",
"tailwind-variants": "^0.1.20",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-roids": "^1.34.0",
"typescript": "^5.3.3",
"webpack": "^5.90.1"
},
"dependencies": {
"@gsap/react": "^2.1.0",
"@next/third-parties": "^15.0.2",
"@nextui-org/react": "^2.2.9",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.3.1",
"framer-motion": "^10.17.4",
"front-matter": "^4.0.2",
"gsap": "^3.12.5",
"loading-points": "^1.0.0",
"lucide-react": "^0.309.0",
"next": "^14.2.3",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.5.0",
"sass": "^1.69.7",
"sharp": "^0.33.2",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"typed.js": "^2.1.0"
}
}