This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
{
"name": "@noel/blog",
"description": "🌌 a blog. to jot down feelings, i guess.",
"version": "1.1.0",
"license": "GPL-3.0",
"author": "Noel <[email protected]>",
"private": true,
"homepage": "https://b.floofy.dev",
"repository": "https://github.com/auguwu/blog",
"bugs": "https://github.com/auguwu/blog",
"scripts": {
"lint:scss": "stylelint src/**/*.scss --customSyntax postcss-scss",
"build:ci": "tsc --noEmit",
"lint:ci": "eslint src --ext .ts,.tsx",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .ts,.tsx --fix && yarn fmt && yarn lint:scss",
"fmt": "prettier --config ./.prettierrc.json --write .",
"dev": "yarn lint && next dev -p 3621"
},
"dependencies": {
"@augu/utils": "1.5.6",
"@fontsource/cantarell": "4.5.10",
"@fontsource/inter": "4.5.14",
"@fontsource/jetbrains-mono": "4.5.11",
"@headlessui/react": "1.7.6",
"@tailwindcss/typography": "0.5.8",
"autoprefixer": "10.4.13",
"gray-matter": "4.0.3",
"lru-cache": "7.14.1",
"luxon": "3.1.1",
"marked": "4.2.4",
"next": "13.0.7",
"next-pwa": "5.6.0",
"postcss-scss": "4.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"sass": "1.56.2",
"sharp": "0.31.2",
"shiki": "0.11.1",
"slugify": "1.6.5",
"tailwindcss": "3.2.4",
"twemoji": "14.0.2",
"xss": "1.0.14"
},
"devDependencies": {
"@augu/eslint-config": "3.0.0",
"@augu/tsconfig": "1.1.1",
"@nuxt/types": "2.15.8",
"@types/lru-cache": "7.10.9",
"@types/luxon": "3.1.0",
"@types/marked": "4.0.8",
"@types/node": "18.11.15",
"@types/react": "18.0.26",
"@types/twemoji": "13.1.1",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"postcss": "8.4.20",
"postcss-reporter": "7.0.5",
"prettier": "2.8.1",
"stylelint": "14.16.0",
"stylelint-config-recommended": "9.0.0",
"typescript": "4.9.4"
}
}