-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.6 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.6 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
{
"name": "tutorialkit-e2e",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"preview": "astro build && astro preview",
"dev:override-components": "astro dev --config ./configs/override-components.ts",
"preview:override-components": "astro build --config ./configs/override-components.ts && astro preview --config ./configs/override-components.ts",
"dev:lessons-in-root": "astro dev --config ./configs/lessons-in-root.ts",
"preview:lessons-in-root": "astro build --config ./configs/lessons-in-root.ts && astro preview --config ./configs/lessons-in-root.ts",
"dev:lessons-in-part": "astro dev --config ./configs/lessons-in-part.ts",
"preview:lessons-in-part": "astro build --config ./configs/lessons-in-part.ts && astro preview --config ./configs/lessons-in-part.ts",
"test": "playwright test",
"test:ui": "pnpm run test --ui"
},
"devDependencies": {
"@astrojs/react": "^3.6.0",
"@iconify-json/ph": "^1.1.13",
"@iconify-json/svg-spinners": "^1.1.2",
"@playwright/test": "^1.46.0",
"@tutorialkit/astro": "workspace:*",
"@tutorialkit/react": "workspace:*",
"@tutorialkit/runtime": "workspace:*",
"@tutorialkit/theme": "workspace:*",
"@tutorialkit/types": "workspace:*",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@unocss/reset": "66.5.2",
"@unocss/transformer-directives": "66.5.2",
"astro": "^4.15.0",
"fast-glob": "^3.3.2",
"playwright": "^1.46.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"unocss": "66.5.2",
"unzipper": "^0.12.3"
}
}