-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.45 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "Jerry K Jia's Blog",
"author": "Jkker <[email protected]>",
"repository": "Jkker/blog",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"deploy": "vercel deploy",
"deps": "run-s deps:*",
"deps:update": "[ -z $GITHUB_ACTIONS ] && yarn add notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:update on CI'",
"deps:link": "[ -z $GITHUB_ACTIONS ] && yarn link notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:link on CI'",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test": "run-p test:*",
"test:lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"@fontsource/jetbrains-mono": "^4.5.12",
"@fontsource/lexend": "^4.5.15",
"@headlessui/react": "^1.7.13",
"@vercel/analytics": "^0.1.11",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"file-saver": "^2.0.5",
"giscus": "^1.2.8",
"got": "^12.6.0",
"jszip": "^3.10.1",
"keyv": "^4.5.2",
"keyv-file": "^0.2.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lqip-modern": "^2.0.0",
"next": "^13.2.4",
"next-sitemap": "^4.0.5",
"next-themes": "^0.2.1",
"notion-client": "^6.16.0",
"notion-types": "^6.16.0",
"notion-utils": "^6.16.0",
"p-map": "^5.5.0",
"p-memoize": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-geolocated": "^4.0.3",
"react-icons": "^4.8.0",
"react-notion-x": "^6.16.0",
"reading-time": "^1.5.0",
"rss": "^1.2.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.7.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
}
}