-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 926 Bytes
/
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
{
"name": "tutorial-vite-plugin",
"version": "0.0.1",
"type": "module",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"postbuild": "cp _headers ./dist/",
"dev": "astro dev",
"preview": "astro preview",
"start": "astro dev",
"format": "prettier src --write"
},
"dependencies": {
"@tutorialkit/react": "1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.6.0",
"@astrojs/react": "^3.3.4",
"@tutorialkit/astro": "1.3.1",
"@tutorialkit/theme": "1.3.1",
"@tutorialkit/types": "1.3.1",
"@types/node": "^20.12.7",
"astro": "^4.15.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.13.0",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"yaml": "^2.4.5"
},
"prettier": {
"trailingComma": "none"
}
}