-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "webdev2",
"version": "0.0.1",
"description": "Web Dev 2",
"scripts": {
"copy-mdx": "node scripts/copy-mdx-files.js",
"dev": "npm run copy-mdx && next dev",
"build": "npm run copy-mdx && next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warsylewicz/webdev2.git"
},
"author": "Aaron Warsylewicz <aaron@wcz.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/warsylewicz/webdev2/issues"
},
"homepage": "https://github.com/warsylewicz/webdev2",
"dependencies": {
"@codesandbox/sandpack-react": "^2.6.7",
"@codesandbox/sandpack-themes": "^2.0.21",
"fs-extra": "^11.1.1",
"glob": "^10.2.6",
"next": "^13.0.6",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.2.0",
"react-confetti-explosion": "^2.1.2",
"react-dom": "^18.2.0"
},
"overrides": {
"next-mdx-remote": "6.0.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.3"
}
}