forked from unikraft/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.61 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@unikraft/docs",
"version": "2.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"lint": "next lint",
"prepare": "husky install",
"gen:theme-typings": "chakra-cli tokens theme.ts",
"avatars:gen": "tsx scripts/avatars.ts",
"members:gen": "tsx scripts/all-members.ts",
"former-members:gen": "tsx scripts/get-former-members.ts",
"search-meta:gen": "tsx scripts/get-search-meta.ts",
"contributing:gen": "tsx scripts/build-contributing-page.ts",
"start": "next start",
"cache:clean": "rm -rf .next .contentlayer",
"clean": "rm -rf pnpm-lock.yaml node_modules",
"reinstall": "pnpm clean && pnpm i",
"deps": "pnpm up '@chakra-ui/*' --latest",
"create:docs": "plop component",
"content": "contentlayer build --clearCache"
},
"dependencies": {
"@chakra-ui/cli": "2.4.1",
"@chakra-ui/icons": "2.0.19",
"@chakra-ui/props-docs": "2.2.1",
"@chakra-ui/react": "2.7.1",
"@chakra-ui/skip-nav": "2.0.15",
"@chakra-ui/theme-tools": "2.0.18",
"@chakra-ui/utils": "2.0.14",
"@codesandbox/sandpack-react": "^1.2.2",
"@codesandbox/sandpack-themes": "^1.0.0",
"@docsearch/react": "^1.0.0-alpha.27",
"@docusaurus/utils": "2.3.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.9.3",
"@next/bundle-analyzer": "^13.4.13",
"@octokit/rest": "^19.0.5",
"clsx": "^2.0.0",
"contentlayer": "0.3.0",
"date-fns": "^2.28.0",
"docsearch.js": "^2.6.3",
"focus-visible": "5.2.0",
"formik": "^2.2.9",
"framer-motion": "9.0.2",
"github-slugger": "1.4.0",
"highlight-words-core": "^1.2.2",
"husky": "^8.0.2",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"markdown-toc": "^1.2.0",
"match-sorter": "^6.3.1",
"mdx-bundler": "^9.0.1",
"next": "^12.2.0",
"next-contentlayer": "0.3.0",
"next-seo": "^5.4.0",
"octokit": "^2.0.4",
"plop": "^3.1.2",
"prism-react-renderer": "^1.3.5",
"prismjs": "^1.29.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-focus-lock": "^2.6.0",
"react-icons": "^4.4.0",
"react-live": "^2.3.0",
"react-lorem-component": "^0.13.0",
"react-player": "^2.10.1",
"react-remove-scroll": "^2.5.5",
"react-responsive-masonry": "^2.1.4",
"react-spinners": "^0.13.4",
"react-table": "^7.8.0",
"remark": "^14.0.2",
"remark-emoji": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"scroll-into-view-if-needed": "^2.2.29",
"shelljs": "^0.8.5",
"tailwindcss": "^3.3.3",
"typescript": "^4.7.4"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/lodash.clonedeep": "^4.4.7",
"@types/lodash.get": "^4.4.7",
"@types/node": "^18.0.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"asciinema-player": "^3.5.0",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.1.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"mkdirp": "^1.0.4",
"node-fetch": "^3.2.10",
"pnpm-deduplicate": "^0.3.1",
"prettier": "^2.7.1",
"react-multi-ref": "^1.0.0",
"semver": "^7.3.7",
"sharp": "^0.30.7",
"tsx": "^3.8.2",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1"
},
"lint-staged": {
"**/*": [
"pnpm search-meta:gen",
"git add *.json --ignore-errors"
]
}
}