-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
87 lines (87 loc) · 2.42 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": "blog",
"version": "1.1.0",
"browserslist": [
"last 4 version",
"not dead"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"sync-post": "node ./scripts/sync-post.js",
"type-check": "./node_modules/.bin/tsc"
},
"dependencies": {
"@contentlayer/client": "^0.0.33",
"@giscus/react": "^2.2.8",
"@linear/sdk": "^1.21.0",
"@types/gtag.js": "^0.0.7",
"add": "^2.0.6",
"classnames": "^2.3.1",
"contentlayer": "^0.0.34-dev.6",
"dayjs": "^1.11.0",
"faunadb": "^4.5.4",
"framer-motion": "^4.1.11",
"fs-extra": "^10.0.1",
"github-api": "^3.4.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"next": "12.1.0",
"next-contentlayer": "^0.0.34-dev.6",
"next-seo": "^4.28.1",
"next-themes": "^0.0.14",
"node-cron": "^3.0.0",
"pinyin": "^2.11.1",
"querystring": "^0.2.1",
"random-words": "^1.1.1",
"rc-switch": "^3.2.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-intersection-observer": "^8.32.2",
"react-notion": "^0.9.3",
"reading-time": "^1.3.0",
"rehype-prism-plus": "^1.1.3",
"remark-code-titles": "^0.1.1",
"rss": "^1.2.2",
"sass": "^1.35.1",
"slugify": "^1.5.0",
"swr": "^0.5.5",
"yarn": "^1.22.17"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"globby": "^11.0.3",
"lint-staged": ">=10.5.4",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.4.1",
"stylelint": "^13.13.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.2.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.scss": "stylelint --fix",
"*.{js,ts,tsx,scss,md}": "prettier --write"
}
}