-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.86 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
92
93
94
95
96
{
"name": "resir014.xyz",
"version": "2.0.0",
"description": "Source code for resir014.xyz",
"main": "N/A",
"repository": "https://github.com/resir014/nextjs-typescript-quickstart",
"author": "Resi Respati <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build && next-sitemap",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit",
"validate": "yarn lint && yarn type-check"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@resir014/tailwind-preset-chungking": "^0.1.4-canary.7",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^4.32.6",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"clsx": "^1.1.1",
"copee": "^1.0.6",
"date-fns": "^2.24.0",
"dotenv": "^10.0.0",
"encoding": "^0.1.13",
"feed": "^4.2.2",
"glob": "^7.2.0",
"googleapis": "^126.0.1",
"gray-matter": "^4.0.3",
"htmr": "^1.0.2",
"isomorphic-unfetch": "^3.1.0",
"markdown-it": "^13.0.2",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-shiki-twoslash": "^2.1.3",
"next": "14.2.21",
"next-seo": "^6.5.0",
"nprogress": "^0.2.0",
"query-string": "^7.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"typeface-inter": "^3.18.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-plugin": "^7.23.5",
"@netlify/plugin-nextjs": "^5.8.1",
"@types/glob": "^7.2.0",
"@types/google.analytics": "^0.0.42",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.12.5",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"critters": "^0.0.22",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-kentcdodds": "^21.0.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.49",
"prettier": "^3.2.5",
"react-is": "^18.2.0",
"stylelint": "^16.3.1",
"stylelint-config-recommended": "^14.0.0",
"tailwindcss": "^3.4.15",
"typescript": "^5.4.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"*.{ts,tsx,js,jsx,css,scss,md,html,json}": [
"prettier --write"
]
}
}