generated from json-schema-org/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 2.22 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": "my-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"next-dev": "next dev",
"content-watch": "nodemon --ext ts,mdx --watch ./content --ignore ./content/outline.json --exec \"tsx ./scripts/generateOutline.ts\"",
"dev": "concurrently \"pnpm run next-dev\" \"pnpm run content-watch\"",
"build": "tsx ./scripts/generateOutline.ts && next build",
"start": "next start",
"lint": "next lint",
"test": "tsx ./scripts/generateOutline.ts && vitest",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\""
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@exodus/schemasafe": "^1.3.0",
"@hyperjump/browser": "^1.1.4",
"@hyperjump/json-schema": "^1.9.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@monaco-editor/react": "^4.6.0",
"@next/mdx": "^14.2.3",
"@next/third-parties": "^14.2.5",
"@types/mdx": "^2.0.13",
"ajv": "^8.13.0",
"better-ajv-errors": "^1.2.0",
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"framer-motion": "^11.1.9",
"geist": "^1.3.0",
"gray-matter": "^4.0.3",
"next": "^14.2.10",
"next-mdx-remote": "^4.4.1",
"prettier": "^3.3.3",
"react": "^18",
"react-dom": "^18",
"react-syntax-highlighter": "^15.5.0",
"rehype-external-links": "^3.0.0",
"rehype-mdx-code-props": "^3.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"sharp": "^0.33.4",
"tsx": "^4.10.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"jsdom": "^24.0.0",
"nodemon": "^3.1.0",
"typescript": "^5",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}