-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "blog",
"author": "Jabriel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:init": "git submodule update --init --recursive && node scripts/submodules_checkout.js main",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "next build && next start",
"lint": "next lint",
"format": "pnpm format:check; pnpm format:write",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"clean": "rimraf .next"
},
"dependencies": {
"@geist-ui/core": "^2.3.8",
"@unocss/reset": "^0.51.8",
"@vercel/analytics": "^1.0.0",
"clsx": "^1.2.1",
"katex": "^0.16.7",
"next": "13.3.2",
"next-themes": "^0.2.1",
"nextra": "^2.4.2",
"nextra-theme-blog": "^2.4.2",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-cusdis": "^2.1.3",
"react-dom": "18.2.0",
"sharp": "^0.32.1",
"styled-components": "^5.3.10",
"yet-another-react-lightbox": "^3.5.3"
},
"devDependencies": {
"@iconify/json": "^2.2.58",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "18.16.3",
"@types/nprogress": "^0.2.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/styled-components": "^5.1.26",
"@unocss/preset-uno": "^0.51.8",
"@unocss/transformer-directives": "^0.51.8",
"@unocss/webpack": "^0.51.8",
"eslint": "8.39.0",
"eslint-config-next": "13.3.2",
"eslint-config-prettier": "^8.8.0",
"lefthook": "^1.6.8",
"prettier": "2.8.8",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"typescript": "5.0.4",
"unocss": "^0.51.8"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}