-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
81 lines (81 loc) · 2.49 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
{
"name": "nan-next",
"version": "0.1.0",
"private": true,
"scripts": {
"component": "node bin/component.js",
"dev": "concurrently \"next dev\" \"yarn build:content --watch\"",
"dev:remote": "concurrently \"next-remote-watch ./_dist-content/**/*\" \"yarn build:content --watch\"",
"build": "yarn build:content && next build",
"build:content": "rm -rf ./_dist-content && babel ./content --out-dir ./_dist-content --copy-files --extensions .ts,.tsx",
"start": "next start",
"stories": "node bin/stories.js",
"lint": "next lint",
"test": "vitest"
},
"dependencies": {
"@codesandbox/sandpack-react": "^1.18.4",
"@codesandbox/sandpack-themes": "^1.17.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-slider": "^1.0.0",
"@stitches/react": "^1.2.8",
"@use-it/interval": "^1.0.0",
"@vercel/analytics": "^1.0.1",
"@vercel/postgres": "^0.4.0",
"@xstate/react": "^3.0.1",
"bezier-easing": "^2.1.0",
"clsx": "^1.2.1",
"encoding": "^0.1.13",
"esbuild": "^0.14.51",
"framer-motion": "^9.0.4",
"glob": "^8.0.3",
"gray-matter": "^4.0.3",
"immer": "^9.0.19",
"javascript-time-ago": "^2.5.9",
"mdx-bundler": "^9.0.1",
"next": "^13",
"next-auth": "^4.22.1",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.0",
"octokit": "^2.1.0",
"popmotion": "^11.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-wrap-balancer": "^0.2.3",
"rehype-pretty-code": "^0.3.2",
"rfdc": "^1.3.0",
"shiki": "^0.12.1",
"svg-path-parser": "^1.1.0",
"swr": "^2.2.0",
"title-case": "^3.0.3",
"use-debounce": "^9.0.2",
"uuid": "^9.0.0",
"xstate": "^4.33.2"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/glob": "^7.2.0",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/svg-path-parser": "^1.1.3",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.14",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^7.3.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"next-remote-watch": "^1.0.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.7.4",
"vitest": "^0.31.1"
}
}