forked from OzCog/tutorialkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "demo.tutorialkit.dev",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && cp _headers ./dist/",
"build_with_check": "astro check && pnpm run build",
"preview": "astro preview"
},
"dependencies": {
"@tutorialkit/react": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/react": "^3.6.0",
"@tutorialkit/astro": "workspace:*",
"@tutorialkit/theme": "workspace:*",
"@tutorialkit/types": "workspace:*",
"@types/react": "^18.3.3",
"astro": "^5.15.9",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.4.5"
}
}