-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.27 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
{
"name": "tk",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check '**/*.{ts,tsx}'",
"prettier:fix": "prettier --write '**/*.{ts,tsx}'",
"eslint:fix": "eslint --cache --fix",
"typecheck": "tsc",
"prepare": "husky install",
"cypress": "cypress open",
"update:webperf": "cd packages/scripts && yarn build:repo-content"
},
"dependencies": {
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.18",
"@imtk/md-links-graph": "1.3.0",
"@loadable/component": "^5.15.2",
"@mui/material": "^5.3.1",
"@octokit/core": "^4.0.5",
"debounce": "^2.1.0",
"framer-motion": "^10.12.16",
"highlight.js": "^11.3.1",
"kbar": "^0.1.0-beta.23",
"minisearch": "^3.2.0",
"next": "13.4.12",
"plaiceholder": "2.2.0",
"react": "^18.2.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.33.1",
"react-katex": "^3.0.1",
"react-wrap-balancer": "^1.1.1",
"reactflow": "^11.7.4",
"reading-time": "^1.5.0",
"sharp": "^0.30.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/gtag.js": "^0.0.8",
"@types/loadable__component": "^5.13.4",
"@types/node": "18.16.0",
"@types/react": "17.0.39",
"@types/react-autocomplete": "^1.8.6",
"@types/react-katex": "^3.0.4",
"cypress": "^9.2.0",
"cypress-wait-until": "1.7.2",
"eslint": "8.6.0",
"eslint-config-next": "12.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"next-mdx-remote": "^4.2.0",
"prettier": "^2.4.1",
"react-tweet-embed": "^2.0.0",
"rehype-highlight": "6.0.0",
"remark-gfm": "^3.0.1",
"typescript": "4.6.3"
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": [
"eslint --cache --fix",
"prettier --write"
]
},
"resolutions": {
"**/@types/react": "17.0.39"
}
}